ran patch and fixed files

This commit is contained in:
doesntfazer
2022-05-22 14:21:07 -04:00
committed by Kyle Brown
parent ef04cdc07c
commit c00e769868
2 changed files with 83 additions and 23 deletions

26
boards/crowboard/kb.py Normal file
View File

@@ -0,0 +1,26 @@
import board
from kmk.kmk_keyboard import KMKKeyboard as _KMKKeyboard
from kmk.scanners import DiodeOrientation
class KMKKeyboard(_KMKKeyboard):
col_pins = (
board.GP6,
board.GP7,
board.GP8,
board.GP9,
board.GP10,
board.GP18,
board.GP19,
board.GP20,
board.GP21,
board.GP22,
)
row_pins = (
board.GP14,
board.GP15,
board.GP16,
board.GP17,
)
diode_orientation = DiodeOrientation.COL2ROW