17 lines
480 B
Python
17 lines
480 B
Python
import board
|
|
|
|
from kmk.consts import DiodeOrientation
|
|
from kmk.mcus.circuitpython_usbhid import KeyboardConfig as _KeyboardConfig
|
|
from kmk.pins import Pin as P
|
|
|
|
|
|
class KeyboardConfig(_KeyboardConfig):
|
|
col_pins = (P.MOSI, P.SCK, P.A5, P.A4, P.A3, P.A2)
|
|
row_pins = (P.D11, P.D10, P.D9, P.D7)
|
|
diode_orientation = DiodeOrientation.COLUMNS
|
|
rgb_pixel_pin = board.TX
|
|
uart_pin = board.SCL
|
|
split_type = 'UART'
|
|
split_flip = True
|
|
split_offsets = [6, 6, 6, 6]
|