2019-07-25 09:32:20 +02:00
|
|
|
import board
|
|
|
|
|
2019-07-13 02:11:36 +02:00
|
|
|
from kmk.consts import DiodeOrientation
|
2019-07-20 23:53:30 +02:00
|
|
|
from kmk.mcus.circuitpython_usbhid import KeyboardConfig as _KeyboardConfig
|
2019-07-13 02:11:36 +02:00
|
|
|
|
|
|
|
|
2019-07-20 23:53:30 +02:00
|
|
|
class KeyboardConfig(_KeyboardConfig):
|
2019-07-25 09:32:20 +02:00
|
|
|
col_pins = (
|
|
|
|
board.A0,
|
|
|
|
board.A1,
|
|
|
|
board.A2,
|
|
|
|
board.A3,
|
|
|
|
board.A4,
|
|
|
|
board.A5,
|
|
|
|
board.SCK,
|
|
|
|
board.MOSI,
|
|
|
|
)
|
|
|
|
row_pins = (
|
|
|
|
board.TX,
|
|
|
|
board.RX,
|
|
|
|
board.SDA,
|
|
|
|
board.SCL,
|
|
|
|
board.D9,
|
|
|
|
board.D10,
|
|
|
|
board.D12,
|
|
|
|
board.D11,
|
|
|
|
board.D13,
|
|
|
|
)
|
2019-07-13 02:11:36 +02:00
|
|
|
diode_orientation = DiodeOrientation.COLUMNS
|