Arduino-USB-HID-RetroJoysti.../README.md

18 lines
1.6 KiB
Markdown
Raw Normal View History

2016-09-05 15:33:10 -04:00
# Arduino-USB-HID-RetroJoystickAdapter
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)).
2016-09-05 15:35:25 -04:00
2016-09-05 15:55:34 -04:00
Download and install Arduino IDE:
https://www.arduino.cc/en/Main/Software
Install joystick library (instructions for installing library: todo)
2016-09-05 15:35:25 -04:00
https://github.com/MHeironimus/ArduinoJoystickLibrary
2016-09-05 15:48:48 -04:00
2016-09-05 16:01:35 -04:00
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 are named Pro Micro. Arduino Pro Micro and ATmega32U4 are good words to use when searching from Ebay etc.
2016-09-05 15:48:48 -04:00
Arduino UNO R3 includes ATmega16U2 and it can be used too, but it needs some extra work.
https://github.com/NicoHood/HoodLoader2