Hey guys, Okay so I know this has been answered before but I need an answer specifically for java.
I have smart dashboard and no robot in front of me. How can I test for the joystick axis?
I am using a six(well seven)axis PS3 Controller and wanna get it to work like without using any code on the robot… any help???
Btw, I can’t use Windows Game Controller properties because it doesn’t really give me the raw axis-es and I can’t really use the default ones because I’ve edited them for reasons… Help?
Woah thanks man (or lady, I won’t judge by name :P) This only goes to 6 axis max… I’ll try to see if I can manually reprogram and re-enable them, THANKS
I’ve never really explored how the drivers’ station works, but if you are writing your own remapping software then you could do something funny like multiplex the bits of multiple axes together and then de-multiplex them on the other side.
So for example, if each axis is normally 16 bits you could make your remapper program squeeze two in if you allocated 8 bits to each.
This would discard the lower eight bits, but presumably you don’t need more than 256 different positions for each axis anyway.
There may be some simpler way to do this like just opening a TCP stream or something; again, I haven’t really looked into what you can do with the drivers’ station.