USB Game Pad With Tilt-accelerometer Mouse using an Arduino

Arduino USB Game Pad (1)

Make a game pad with an accelerometer inside!

This project tutorial will show you how you can convert a console game pad into a USB keyboard mouse for playing games on your PC. The USB game pad can be used with nearly any software, such as a MAME emulator, game, simulation software, or for custom user interfaces.

We’ll start by turning the buttons of the game pad into keyboard buttons, so that pressing ‘up’ is converted into the ‘U’ key, for example. The firmware is easily adaptable, so you can adjust it for whatever software it will be used with.

Then we’ll make the project more interesting by adding an accelerometer. This will allow the game pad to be used as a mouse by tilting it!

Credits

This tutorial including the original code and Portal video is by Devlin Thyne! Rock!

Arduino USB Game Pad (1)

Step 1: What You’ll Need…

You’ll need the following in order to build the project:

  • Game pad – We’ll be using an SNES controller
  • Teensy – This is a very small microcontroller board that can act as a keyboard/mouse
  • Triple-axis accellerometer – We’ll be using the nice ADXL335 on a breakout board. You can skip this if you’re not planning to add in the mouse capability
  • USB cable with mini-b connector – to attach to the Teensy for plugging into a computer!
  • Ribbon cable – for all the soldering connections. Rainbow cable is the easiest to work with as its color coded

If you want to build the entire project, we have a project pack in the shop with all the parts listed above!

You’ll also need some basic hand tools such as screwdrivers, wire strippers, soldering ironsolderdiagonal cutters, vise or third hand tool, etc.

All the code is on GitHub, including some extra sketches we’ve written so be sure to look there!

Step 2: Disassemble the SNES Controller

We’ll begin by disassembling the SNES controller. There are 5 small phillips screws on the back [see image 2a].

Once you lift the back off, you can remove the PCB. Be careful as there are tiny wires for the ‘side’ buttons so just make sure those pieces come out cleanly [see image 2b].

Each button is made of 3 parts – there’s the plastic part that you press, beneath that is the elastomer which is a rubber molded piece with a conductive bit that goes underneath the plastic part, and finally on the PCB there are two interdigitated and exposed traces. When the user presses the plastic button, it pushes down on the elastomer which then pushes the conductive rubber onto both traces, shorting them.

There is also a black blob in the middle. This blob is a chip that takes all the button inputs and then converts it into the way that the SNES wants to hear. That’s all fine, but we don’t want to use the blob because we are going to make our own custom chip software. (Note that it would be pretty easy to make the Teensy ‘talk’ right to the blob using the SNES protocol but then you wouldn’t be able to adapt this tutorial to other controllers, for that reason we’re going to do it the ‘hard way’)

The question is now how can we listen to all the buttons?

Well, luckily, almost all game pads are going to use a similar method for arranging the buttons. If you note carefully at the PCB, you’ll see that each button is made of two traces, but that all of the buttons share one trace together [image 2c].

This is the common (ground) trace. If we were to make a schematic, it would look kinda like image 2d.

Note that this is really just a symbolic schematic, the ground wire doesn’t necessarily connect on the side that’s indicated, we’re just showing how all the buttons have a common ground pin!

OK now this is straight forward, if you are not sure how to read buttons with a microcontroller, we have a nice tutorial you might want to check out (in fact, we really suggest it as we’ll be referring to concepts in that tutorial) Basically each button connects to an input of the microcontroller. We’ll need a pull-up resistor, but luckily we can set the microcontroller’s internal pullups (so we don’t have to solder in 12 10K resistors!) Then the microcontroller can listen on each pin for a button press and when it is received, generate a keypress event.

Arduino USB Game Pad circuit (1)

Step 3: Introducing the Teensy with HID

So you may be wondering “heck, I should just grab an Arduino!” But a ‘proper’ Arduino can’t do what we want, which is to appear as a keyboard. When you plug in an Arduino into your USB port, it shows up as a Serial device, which is fantastic for debugging or for interfacing to Processing. To listen to a Serial device, you need to open up Hyperterm or Zterm or the Arduino IDE’s serial monitor. However, it does not act as actual keyboard where what it outputs goes to Microsoft Word or a video game.

For that, we need a different kind of chip, a chip that is USB native! USB native chips can act as USB serial ports, but they can also act as MIDI devices, keyboards, mice, audio devices, joysticks, etc. Nearly anything! A nice chip that does all this is the ATmega32U4 (the U is for usb!) and the Teensy is basically this chip, a USB connector, button and some other necessary things. Its very tiny (thus the name) and has a fantastic programming interface that is basically the Arduino + a helper, it runs under Mac, Linux or Windows.

Step 4: Stop! It’s Solder Time!

OK we’re basically ready to go. The plan is to solder a single Ground wire to the common ground for all the buttons, then solder a separate wire to each button (the not-ground side). The ground connects to the Teensy ground, the button wires connect to all the solder pads down the side. Then we’ll write the code that listens to the button presses and converts themCut off a strip of ribbon cable, about 4″ long. Use diagonal cutters or fingernails to carefully nip and ‘rip’ the individual wires apart about 1″ and then strip the ends and tin them with solder [see image 4a]. Do this for both sides.

To connect to ground, we’ll expose a little copper in the top left corner, this way we don’t have the wire running underneath the elastomer [see images 4b and 4c].

Solder the Black wire to the ground plane, we brought the wire through a hole [see images 4d and 4e].

OK lets solder to the first button. The key is to remember to NOT solder to the same common pad but to the opposite pad! Solder the white wire to the ‘up’ button. There’s almost always a hole you can feed the wire through! [see image 4f]

Solder the gray wire to the Right pad, the purple wire to the Down pad and the blue wire to the Left pad [see image 4g]

Read more: USB Game Pad With Tilt-accelerometer Mouse using an Arduino

Leave a Comment

Your email address will not be published. Required fields are marked *