Go to file
mcgurk de62f7992c Update README.md 2016-09-05 23:31:45 +03:00
Arduino_ProMicro.jpg Add files via upload 2016-09-05 23:15:05 +03:00
README.md Update README.md 2016-09-05 23:31:45 +03:00
RetroJoystickAdapter.ino Rename RetroJoystickAdapter to RetroJoystickAdapter.ino 2016-09-05 22:28:52 +03:00
sega_genesis_adapter.jpg Add files via upload 2016-09-05 22:37:46 +03:00
self_made_NES_connector_arrangement.jpg Add files via upload 2016-09-05 22:37:46 +03:00

README.md

Arduino-USB-HID-RetroJoystickAdapter

What you need

Arduino board

ATmega32U4 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.

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 OrangePi, 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

Install joystick library (instructions for installing library: todo) 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.

Setup

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

Install joystick library (instructions for installing library: todo): https://github.com/MHeironimus/ArduinoJoystickLibrary

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 RetrOrangePi only once. (of course this is also handy with every other emulators and platforms than RetrOrangePi) You can also enable or disable Konami-code-shortcut (works only with Genesis 6-button controller (X+Y+Z+UP (or DOWN)) and SNES-controller (X+Y+R1+UP (or DOWN)).

Arduino UNO R3 includes ATmega16U2 (along with ATmega328P) and it can be used too, but it needs some extra work: https://github.com/NicoHood/HoodLoader2