kmk_firmware/boards/jpconstantineau/offsetmx43/kb.py

26 lines
575 B
Python
Raw Normal View History

2021-10-27 01:44:48 +02:00
import board
from kmk.kmk_keyboard import KMKKeyboard as _KMKKeyboard
2022-04-09 02:09:24 +02:00
from kmk.scanners import DiodeOrientation
2021-10-27 01:44:48 +02:00
class KMKKeyboard(_KMKKeyboard):
col_pins = (
board.GP11,
board.GP12,
board.GP13,
board.GP14,
board.GP15,
board.GP19,
board.GP20,
board.GP21,
board.GP22,
board.GP26,
board.GP27,
board.GP28,
)
2021-10-27 01:44:48 +02:00
row_pins = (board.GP7, board.GP8, board.GP9, board.GP10)
diode_orientation = DiodeOrientation.COL2ROW
rgb_pixel_pin = board.GP6
2021-10-27 06:33:17 +02:00
rgb_num_pixels = 47