21 lines
438 B
Python
21 lines
438 B
Python
import board
|
|
|
|
from kmk.consts import DiodeOrientation
|
|
from kmk.mcus.circuitpython_usbhid import KeyboardConfig as _KeyboardConfig
|
|
|
|
|
|
class KeyboardConfig(_KeyboardConfig):
|
|
col_pins = (
|
|
board.RX,
|
|
board.D13,
|
|
board.A0,
|
|
board.D11,
|
|
board.A4,
|
|
board.A5,
|
|
board.D10,
|
|
board.D9,
|
|
board.SCK,
|
|
)
|
|
diode_orientation = DiodeOrientation.COLUMNS
|
|
rgb_pixel_pin = board.TX
|