2021-07-19 17:30:28 +02:00
|
|
|
import board
|
|
|
|
|
|
|
|
from kmk.kmk_keyboard import KMKKeyboard as _KMKKeyboard
|
2022-04-09 02:09:24 +02:00
|
|
|
from kmk.scanners import DiodeOrientation
|
2021-07-19 17:30:28 +02:00
|
|
|
|
|
|
|
|
|
|
|
class KMKKeyboard(_KMKKeyboard):
|
|
|
|
col_pins = (
|
|
|
|
board.D24,
|
|
|
|
board.D25,
|
|
|
|
board.D26,
|
|
|
|
board.D27,
|
|
|
|
board.D28,
|
|
|
|
board.D29,
|
|
|
|
board.D30,
|
|
|
|
board.D31,
|
|
|
|
board.D32,
|
|
|
|
board.D33,
|
|
|
|
board.D34,
|
|
|
|
board.D35,
|
|
|
|
)
|
|
|
|
|
|
|
|
row_pins = (board.D3, board.D4, board.D5, board.D6, board.D7, board.D8)
|
|
|
|
|
|
|
|
diode_orientation = DiodeOrientation.ROWS
|
|
|
|
# diode_orientation = DiodeOrientation.COLUMNS
|