hey peeps,
is there a way to make my PC read the data coming from my Arduino Uno (pots, switches, buttons data) as a Joypad/Steering wheel driver data ?
anyway?
thanks
Theoretically yes, but that's not an easy task. You first have decode (reverse engineer) the USB protocol your steering wheel uses, then you have to implement that protocol in a very compact code to upload to the USB coprocessor (ATmega16U2) on the UNO, create a protocol to be used between the coprocessor and the UNO's main processor (ATmega328p) and implement that on both sides. If you're new to Arduino, start with easier things. Also this is easier if you use an Arduino Leonardo because that type of Arduino has USB built into the main processor so you can save a lot of overhead you have with the UNO.
Am trying to find my way thru UnoJOY and this tutorial
This moves the more complex part to the PC side where you have to install a new driver. If your games are compatible with this driver, that would be the easiest solution for you.