1
0
mirror of https://github.com/mcgurk/Arduino-USB-HID-RetroJoystickAdapter synced 2024-08-13 15:43:47 -04:00
Arduino-USB-HID-RetroJoysti.../C64_keyboard/C64-JoyKEY.sc

77 lines
1.7 KiB
Python
Raw Normal View History

2023-02-11 14:21:51 -05:00
# https://github.com/tebl/C64-JoyKEY
# https://github.com/tebl/C64-JoyKEY/blob/main/documentation/schematic/C64%20Joykey.pdf
#
2023-02-11 17:43:29 -05:00
# http://kookye.com/wp-content/uploads/2016/02/Pinout-ProMicro.jpg
2023-02-11 14:21:51 -05:00
# https://deskthority.net/wiki/Arduino_Pro_Micro
#
# PD1(D2) fire1
# PD0(D3) fire2
# PD4(D4) fire3
# PB3(D14) left
# PB1(D15) down
2023-02-12 15:42:16 -05:00
# PF7(D16) right # (PF5(D18) in schematics!)
# PF6(D17) up # (PF4(D19) in schematics!)
2023-02-11 17:10:25 -05:00
# PD7(D6) underglowleds
# PB6(D10) sysled
# PB5(D9) powerled
2023-02-11 17:42:01 -05:00
# '+' prefix = off at startup
# '-' prefix = on at startup
2023-02-11 17:10:25 -05:00
led caps -PD7
2023-02-11 17:29:43 -05:00
led num +PB6
2023-02-11 17:10:25 -05:00
led scroll -PB5
2023-02-11 14:21:51 -05:00
matrix
scanrate 1
debounce 5
blocking 1
2023-02-11 14:29:13 -05:00
unstrobed -PD1 A
unstrobed -PD0 B
unstrobed -PD4 C
unstrobed -PB3 D
unstrobed -PB1 E
2023-02-12 15:42:16 -05:00
unstrobed -PF7 F
unstrobed -PF6 G
2023-02-11 14:21:51 -05:00
end
2023-02-11 14:29:13 -05:00
2023-02-11 17:29:16 -05:00
# example, press a-button to CAPS_LOCK = toggle underglowleds
#macroblock
# macro A -ALL
# PRESS CAPS_LOCK
# CLEAR_ALL
# endmacro
#endblock
# example, press b-button to NUM_LOCK = toggle SYS-led
#macroblock
# macro B -ALL
# PRESS NUM_LOCK
# CLEAR_ALL
# endmacro
#endblock
# example, press c-button to SCROLL_LOCK = toggle PWR-led
#macroblock
# macro C -ALL
# PRESS SCROLL_LOCK
# CLEAR_ALL
# endmacro
#endblock
# example, press d-button to get shifted D
#macroblock
# macro D -ALL
# SET_META LSHIFT
# PRESS D
# CLEAR_ALL
# endmacro
#endblock
2023-02-11 17:10:25 -05:00
2023-02-11 14:29:13 -05:00
#
# unstrobed
# Specifies a single pin to read and the corresponding HID code.
# This is intended for a single switch which can be wired with the other side of the switch permanently connected to either ground or +5V. If the other side of the switch is at +5V, a pull-down resistor must be added between the pin and ground.
# Example:
# unstrobed -PF1 LSHIFT