Go to file
mcgurk b2b6cc4e71 Rename RetroJoystickAdapter-DualShock to RetroJoystickAdapter-DualShock.ino 2016-09-09 00:24:36 +03:00
Hardware Add files via upload 2016-09-08 21:39:39 +03:00
Images Add files via upload 2016-09-06 22:01:30 +03:00
Tutorial Update README.md 2016-09-06 22:05:11 +03:00
test Rename RetroJoystickAdapter-DualShock to RetroJoystickAdapter-DualShock.ino 2016-09-09 00:24:36 +03:00
README.md Update README.md 2016-09-08 21:57:06 +03:00
RetroJoystickAdapter.ino added Playstation controller support 2016-09-08 13:53:14 +03:00

README.md

Arduino-USB-HID-RetroJoystickAdapter

What is this?

Very cheap and quite easy way to connect many non-USB joysticks and gamepads or DIY arcade cabinet controller to almost any machine with USB-port and HID-support. Arduino board with ATmega32u4 chip with help of Joystick-library does all the USB-work. Tested with Windows and Linux desktop computers and ARM based computers like Raspberry Pi and Orange Pi. Also worked with Samsung Galaxy S4 Android phone and Samsung Galaxy Tab 10.1 Android tablet with OTG-USB cable.

ATmega32u4 can be easily changed to act as keyboard and/or mouse too.

Supported controllers

  • Atari-joysticks (supports Sega Master System controller with 2-fire buttons) (ATARI)
  • Nintendo Entertainment System controllers (NES)
  • Super Nintendo controllers (SNES)
  • Sega Genesis / Megadrive 3 and 6-button controllers (GENESIS_3 / GENESIS_6)
  • Sony Playstation 1/2 controllers (doesn't support Dualshock or analog features) (PSX)

Short version

  • Get ATmega32u4 Arduino board
  • Connect joystick or gamepad to Arduino (in most situations soldering is required)
  • Install Arduino IDE
  • Install Joystick library
  • Open sourcecode to Arduino IDE and select controller by commenting and uncommenting and edit pin-numbers (if needed)
  • Upload
  • Done

Long version

What you need

Arduino board

Starting point is ATmega32u4 based Arduino board. There is two versions of ATmega32u4, IO-logic with 5V or 3.3V. Many controllers (like basic Atari-controller) doesn't include any logic, so 5V and 3.3V versions are fine. Most of controllers with some logic needs 5V (NES, SNES, Genesis) and some rare ones needs 3.3V (Gamecube). Make sure that Arduino includes USB-port. There are some versions which doesn't include USB-port and then you have to add USB-connector for it. Arduino Leonardo includes ATmega32u4, but cheapest and smallest ones are named Pro Micro. Arduino Pro Micro and ATmega32u4 are good words to use when searching from Ebay etc. Cheapest starts from about $4.

Example of Arduino Pro Micro:

Arduino Pro Micro

Computer with Arduino IDE

Arduino IDE works with Windows, OS X and Linux and ARM (beta). If you use small card computer like Rasperry Pi or Orange Pi, you can program adapter even with them (tested with Orange Pi PC and RetrOrangePi 2.0). That way you don't even have to unplug adapter from your emulator/game-platform if you want reprogram adapter.

Joystick library for Arduino IDE

https://github.com/MHeironimus/ArduinoJoystickLibrary

Joystick(s) or gamepad(s) and way to connect them to Arduino

Some joystick/gamepads uses their own connectors and original connectors can be very pricey. Sometimes you can find extension cord cheaper than plain connector and you can take cable and plug from that. You can use any IO-pins, but try to avoid pins 0 and 1. They are serial port TX and RX pins and even though they are not used right now, they are handy for debugging and other uses. Example in Hardware folder.

Setup

  • Download and install Arduino IDE: https://www.arduino.cc/en/Main/Software

  • Tools->Board->Arduino Leonardo

    In Arduino IDE you have to select board. In my case some reason "Arduino Leonardo" selections works better than "Arduino/Genuino Micro". With Leonardo-setting RX and TX leds are normally off and blinks when data is transfered to/from USB. With Micro-setting LED's are normally on and they blinks to off when data is transferring.

  • Tools->Port->COMx

    Arduino IDE shows available COM-ports. In most cases it's biggest numbered COM-port. COM-port number can change when you start to upload program first time (COM-port number can be different after joystick-features are enabled). If this happens, just change COM-port and start upload again. When I tested with RetrOrangePi (Armbian Linux), port was /dev/ttyACM0.

  • Test your programming environment and upload

    You can now test your setup. One basic example is "blink". With this board, it doesn't blink, because there is no led in pin 13. Nevertheless you can use it as a test that your IDE and Arduino works. Select File -> Examples -> 01.Basics -> Blink and press Upload (Arrow to right -symbol top of code windows). If you get no errors, you are good to go.

  • Install joystick library

    Go to https://github.com/MHeironimus/ArduinoJoystickLibrary and press Clone or download -> Download ZIP. Extract Joystick2 folder from zip to %HOMEPATH%\Documents\Arduino\libraries (Windows) or ~/Arduino/libraries (Linux).

    After extraction check that you have files %HOMEPATH%\Documents\Arduino\libraries\Joystick2\Joystick2.h and Joystick2.cpp or ~/Arduino/libraries/Joystick2/Joystick2.h and Joystick2.cpp. Close and start Arduino IDE again so it searches and finds library.

  • Load RetroJoystickAdapter.ino to Arduino IDE

    Select controller by commenting and uncommenting and edit pin-numbers (if needed).

  • Press Upload

  • If you got no errors, test in Windows with Control Panel -> Game Controllers or in Linux with jstest /dev/input/js0

Code

This code supports Atari, SMS, NES, SNES and Genesis (3 and 6 button) controllers. Select your controller by commenting and uncommenting stuff from beginning of source code and give your IO-pin numbers. Every one uses same button numbering, so if you make multiple adapters for different controllers, you have to teach buttons to emulator/game (or whole emulation system like RetroPie or RetrOrangePi) only once.

Konami code

You can also enable or disable Konami-code-shortcut. For now it works only with Genesis 6-button controller (X+Y+Z+UP (or DOWN)), SNES-controller (X+Y+R1+UP (or DOWN)) and PSX-controller (rectangle+circle+triangle+UP (or DOWN)). Some games demands that not other buttons are pressed before code and that's why only last pressed button can be button which have some function in emulator.

https://en.wikipedia.org/wiki/Konami_Code https://en.wikipedia.org/wiki/List_of_Konami_code_games

Tutorial

There is simple tutorial in Tutorial folder. I tried to make it as clear as possible, so even if you are not familiar with coding, you may can do modifications to it (example add a button).

Misc

Arduino UNO R3 includes ATmega16u2 (along with ATmega328p) and it can be used too, but it needs some extra work (code doesn't work without modifications with UNO): https://github.com/NicoHood/HoodLoader2

Todo

  • example (D-connectors straight to Arduino)
  • structure of code, sends only when something changes
  • button numbering (genesis C as select)
  • changing maximum buttons from joystick library (maybe pointless)
  • some words of analog controllers?
  • some words of Arduino acting same time as serial port
  • other ideas - PIR example to misc