29 lines
573 B
Python
29 lines
573 B
Python
import board
|
|
|
|
from kmk.consts import DiodeOrientation
|
|
from kmk.mcus.circuitpython_usbhid import KeyboardConfig as _KeyboardConfig
|
|
|
|
|
|
class KeyboardConfig(_KeyboardConfig):
|
|
col_pins = (
|
|
board.SDA,
|
|
board.A2,
|
|
board.A3,
|
|
board.A4,
|
|
board.A5,
|
|
board.SCK,
|
|
board.MOSI,
|
|
)
|
|
row_pins = (
|
|
board.TX,
|
|
board.A0,
|
|
board.RX,
|
|
board.A1,
|
|
board.D11,
|
|
board.D9,
|
|
board.D12,
|
|
board.D10,
|
|
)
|
|
diode_orientation = DiodeOrientation.COLUMNS
|
|
rgb_pixel_pin = board.D13
|