I will be posting the plans and updates on my up-coming motion Rig here.
It is currently a static rig based on aluminium profiles, G27, and DIY parts.
The plan is to built it up in stages/phases as I go along.
So that it is extensible/flexible for future upgrades and mods.
Phase 1: Static rig
Phase 2: 2-dof chasis
Phase 3: 3-dof traction loss chasis
Phase 4: ?
MY LIST OF GOALS/ REQUIREMENTS
1. Compact as possible
in order to fit in a tokyo apartment room

to keep weight to minimum - see 2
2. Quick, responsive movements
particularly want good feedback on braking force, traction loss
3. Structural stiffness is important
eliminate flexing, "squishiness", chattering, etc as much as possible
4. At least 10 degrees pitch (fwd and back ), 10 degrees roll (L and R )
5. Setup that is optimized for Rally driving, on WRC3, Dirt, RBR etc
6. Use car/bike parts as much as possible - junk or otherwise
7. Keep cost to minimum - since its a hobby afterall

8. Learn as much as possible about the tech and science involved while having fun.
The system is based on Sirnoname's Arduino XPID,
and thanks to inspiration from yokoyoko's rig as well as support from many members here.

After struggling through the manuals and buying parts, laying things out and debugging,
So far I have managed to do some initial tests,
and get XSIM, XPID, the motor drivers, and the wiper motors working together.
As you can see in the screen cap the potentiometers are moving in sync with the motion inputs.

Still working on many details and trying to settle on the final measurements of the motor arms and brackets...
That's it for now!
UPDATE 2012-04-02
So after being a complete wise-ass and suggesting to prodigy that "hey, you can try to repair your damaged JRK by soldering some microscopic surface mount devices!" it looks like I have to eat my own words and taste my own medicine, because I have managed to blow up a surface mount device on my G27 wheel pcb

LoL.
Somehow I think I let a stray wire coming from the car battery touch the usb connector of the G27. Yes it's amazing !
So far, I can see that:
The markings on the PCB are U7 and U6, which suggest they are integrated circuits.
The marking on the device (chip) itself, which is toasted, says "V08 68P"
The device has 5 pins.
I found a G25 pcb that someone marked up, for some reference.
http://www.flickr.com/photos/anachrocomputer/5120265086/
So the pop quiz now is, what is this surface mount device


UPDATE 2012-04-13
My G27 wheel decided to play dead.
So among a bunch of things to try to resurrect it, I contacted logitech.
The short version of the answer I got is:
"...we don't advise our customer to open the device.
It automatically voided the warranty. I am sorry about that. "
I wasn't ready to spend nearly $300, which I need to spend on building up the rig.
So I had to dig deep, and learn about smd components and circuit boards fast...
I managed to identify the damaged smd, with great difficulty
and the help of an application engineer at IC chip maker Maxim.
This is it:
NXP 74LVC1G08 which provides one 2-input AND function.
http://www.nxp.com/products/logic/gates ... G08GV.html
I sourced the part, which I got today.
I managed to remove the burnt smd, which crumbled to pieces, and left a couple of the contact pads in ruin.
Even with some exposed trace wires, I managed to solder the new smd into place,
and was able to check that the connections are working, without any shorts.
Nothing else on the board has any physical damage so:
if this works then
today is my lucky day
end if
But no such joy! The wheel is still not recognized by the pc,
So it looks like the main MCU failed somehow.
With all the over-voltage protection that should be built in the board, I cant believe this has happened!
I looked into the part, which I found out is this :
ST72F651AR6T1 : ST7 - LOW-POWER, Full-speed Usb 8-BIT MCU With 32K Flash, 5K RAM, Flash Card I/F
http://www.st.com/web/catalog/mmc/FM141 ... partnumber
But the MCU probably has to be programmed anyway, so there is no point of just getting the part.
I have no idea if this is different from a power on/off, but I found that it is possible to reset the MCU
http://www.st.com/st-web-ui/static/acti ... 042515.pdf
I looked on the usual sites for a replacement main board, but no luck..
The best I can hope for now, is to buy a replacement motherboard from logitech..
Otherwise my sim racing life has been set back big time!
UPDATE 2012-04-14
I have had no choice but to read through the data sheet of the microcontroller, and go deep, way deep...
Worst case scenario is that the MCU is physically damaged.
Better case scenario is that the MCU got stuck in "HALT mode",
and that I can get it to come to life again, by doing a hardware reset.
Referring to the data sheet :
8.3 HALT MODE
The HALT mode is the MCU lowest power consumption mode.
The HALT mode is entered by executing the HALT instruction.
The internal oscillator is then turned off, causing all internal processing
to be stopped, including the operation of the on-chip peripherals.
The MCU can exit HALT mode on reception of either an external interrupt on ITi,
an end suspend mode interrupt coming from USB peripheral, an SPI interrupt or a reset.
The oscillator is then turned on and a stabilization time is provided before releasing CPU operation.
The stabilization time is 512 CPU clock cycles. After the start up delay, the CPU continues operation by servicing the interrupt which wakes it up or by fetching the reset vector if a reset wakes it up.
I must somehow bring my baby back to life !!
Trying to find out if "power on reset" happens on this mcu, when it is powered on/off...