Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have an HTML5 ping pong game. You can check it out at (http://pong.hackrdojo.com/). How do I make a controller, where I can use a breadboard interface with two buttons all linked to an Arduino microcontroller for moving the paddle up and down?

share|improve this question
You'll probably need to build a browser extension/plugin to communicate with the controller. – bfavaretto Sep 26 '12 at 23:50
1  
Check out github.com/rwldrn/johnny-five – Aknosis Sep 26 '12 at 23:50
@Aknosis that link looks amazing! Thanks a lot bud! – clockwork189 Sep 26 '12 at 23:57

2 Answers

An even easier method is to buy an arduino leonardo board (cheap on ebay). There is demo code to create a keyboard.

  1. Map your pots and switches to a specific key like up down on keyboard etc.
  2. If you are using windows you could then use a program called glovepie that lets you set up profiles to remap the key for the specific key to the game to save reprogramming the arduino for each game.

Have fun making out there game controllers. That's how I did it and it works beautifully.

share|improve this answer
Are there any links you could provide that might be helpful? – JSuar Jan 3 at 23:30

Right now I am going with Aknosis' solution of using Johnny Five(https://github.com/rwldrn/johnny-five)

I am open to any other alternatives.

share|improve this answer
Johnny Five looks great, but isn't it server-side js? I thought you wanted to interface with the browser. – bfavaretto Sep 27 '12 at 0:04
Yeah, this would mean doing push a command from the Arduino to the server and from the server I push it to the client side. I guess the other alternative would be to write my game in C and but where is the fun in that? :) – clockwork189 Sep 27 '12 at 0:08

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.