20 lines
541 B
Python
20 lines
541 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.A2, P.A3, P.A4, P.A5, P.SCK, P.MOSI)
|
|
row_pins = (P.D13, P.D11, P.D10, P.D9)
|
|
diode_orientation = DiodeOrientation.COLUMNS
|
|
|
|
split_type = 'UART'
|
|
split_flip = True
|
|
split_offsets = [6, 6, 6, 6, 6]
|
|
uart_pin = board.SCL
|
|
extra_data_pin = board.SDA
|
|
rgb_pixel_pin = board.TX
|
|
# led_pin = board.D7
|