Can I somehow control..say a program or a game on my pc from a button on the arduino, (directly or through processing or whatever)
Im trying to make H shifter for a game.
Can I somehow control..say a program or a game on my pc from a button on the arduino, (directly or through processing or whatever)
Im trying to make H shifter for a game.
Yes, you can. Take a look at the Processing language. There are also some examples in the Arduino Cookbook. And you should check out the Arduino Playground for a little more info on using Processing with the Arduino.
Hope that helps.
i cant find examples of arduino keyboard or something like that..can you point me in the right direction?
i cant find examples of arduino keyboard or something like that..can you point me in the right direction?
Check out the Robot class for Processing (has an example of controlling mouse), if you can already send serial data to PC, you can use Processing to pick up the serial message and manipulate pointer using Robot Class.
And here is how to send a key press event, but it is in pure java rather than processing.