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

35 lines
1.3 KiB
Markdown
Raw Normal View History

2017-06-01 10:00:10 -04:00
#### Pin 9 and 10 needed for TIMER1. Move SS and INT of USB host shield away
2017-05-30 12:31:59 -04:00
C:\Users\xxxxx\Documents\Arduino\libraries\USB_Host_Shield_Library_2.0\UsbCore.h:
2017-06-01 10:00:10 -04:00
```
//typedef MAX3421e<P10, P9> MAX3421E;
//Arduino Pro Micro SS=A0, INT=A1:
2017-05-30 12:31:59 -04:00
typedef MAX3421e<P18, P19> MAX3421E;
2017-05-30 12:32:52 -04:00
```
2017-06-01 10:00:10 -04:00
#### Joystick port -> Arduino
- 9 (POTX) -> 1k -> 9 (OC1A)
- 9 (POTX) -> (ICP1) Arduino Pro Micro: 4, Arduino Uno: 8
- 5 (POTY) -> 1k -> 10 (OC1B)
- 6 (FIRE) -> 5
- 1 (UP) -> 6
2017-06-01 10:02:56 -04:00
#### USB Host Shield (3.3V) -> Arduino
2017-06-01 10:03:50 -04:00
- SS -> A0 (Arduino Pro Micro) (check UsbCore.h) (3.3V!)
- INT -> A1 (Arduino Pro Micro) (check UsbCore.h) (3.3V!)
- MOSI -> 11 (Arduino Uno), 16 (Arduino Pro Micro) (3.3V!)
- MISO -> 12 (Arduino Uno), 14 (Arduino Pro Micro) (3.3V!)
- CLK -> 13 (Arduino Uno), 15 (Arduino Pro Micro) (3.3V!)
- RST -> RST (3.3V!)
2017-06-01 10:00:10 -04:00
- GND -> GND
- VCC -> 3.3V
- VBUS -> 5V (cut trace from VBUS-pad to resistor!)
2017-06-01 10:03:22 -04:00
#### Links
- http://www.zimmers.net/anonftp/pub/cbm/documents/projects/interfaces/mouse/Mouse.html
- http://asdasd.rpg.fi/~svo/%5bm%5douse/
- https://ist.uwaterloo.ca/~schepers/MJK/pics/joyports.gif
2017-06-01 10:06:44 -04:00
- Trace cut from USB Host Shield mini: https://geekhack.org/index.php?topic=80421.0
2017-06-01 10:00:10 -04:00
2017-06-01 10:02:56 -04:00
I used Arduino Pro Micro and module which have AMS1117 3.3V regulator and 8 bidirectional voltage converters.