2019-07-25 09:32:20 +02:00
|
|
|
import board
|
|
|
|
|
2018-10-16 13:04:39 +02:00
|
|
|
from kmk.consts import DiodeOrientation
|
2019-07-25 08:43:00 +02:00
|
|
|
from kmk.matrix import intify_coordinate as ic
|
2019-07-20 23:53:30 +02:00
|
|
|
from kmk.mcus.circuitpython_usbhid import KeyboardConfig as _KeyboardConfig
|
2019-05-13 02:04:23 +02:00
|
|
|
|
2019-07-20 23:53:30 +02:00
|
|
|
# Implements what used to be handled by KeyboardConfig.swap_indicies for this
|
2019-05-13 02:04:23 +02:00
|
|
|
# board, by flipping various row3 (bottom physical row) keys so their
|
|
|
|
# coord_mapping matches what the user pressed (even if the wiring
|
|
|
|
# underneath is sending different coordinates)
|
2019-07-25 07:57:11 +02:00
|
|
|
_r3_swap_conversions = {3: 9, 4: 10, 5: 11, 9: 3, 10: 4, 11: 5}
|
2019-05-13 02:04:23 +02:00
|
|
|
|
|
|
|
|
|
|
|
def r3_swap(col):
|
|
|
|
try:
|
|
|
|
return _r3_swap_conversions[col]
|
|
|
|
except KeyError:
|
|
|
|
return col
|
2018-10-16 13:04:39 +02:00
|
|
|
|
|
|
|
|
2019-07-20 23:53:30 +02:00
|
|
|
class KeyboardConfig(_KeyboardConfig):
|
2018-10-16 13:04:39 +02:00
|
|
|
# physical, visible cols (SCK, MO, MI, RX, TX, D4)
|
|
|
|
# physical, visible rows (10, 11, 12, 13) (9, 6, 5, SCL)
|
2019-07-25 09:32:20 +02:00
|
|
|
col_pins = (board.SCK, board.MOSI, board.MISO, board.RX, board.TX, board.D4)
|
|
|
|
row_pins = (
|
|
|
|
board.D10,
|
|
|
|
board.D11,
|
|
|
|
board.D12,
|
|
|
|
board.D13,
|
|
|
|
board.D9,
|
|
|
|
board.D6,
|
|
|
|
board.D5,
|
|
|
|
board.SCL,
|
|
|
|
)
|
2018-10-16 13:04:39 +02:00
|
|
|
rollover_cols_every_rows = 4
|
|
|
|
diode_orientation = DiodeOrientation.COLUMNS
|
|
|
|
|
2019-05-13 02:04:23 +02:00
|
|
|
coord_mapping = []
|
|
|
|
coord_mapping.extend(ic(0, x) for x in range(12))
|
|
|
|
coord_mapping.extend(ic(1, x) for x in range(12))
|
|
|
|
coord_mapping.extend(ic(2, x) for x in range(12))
|
|
|
|
coord_mapping.extend(ic(3, r3_swap(x)) for x in range(12))
|