Added navi10 by u/emdarcher
This commit is contained in:
15
boards/navi10/kb.py
Normal file
15
boards/navi10/kb.py
Normal file
@@ -0,0 +1,15 @@
|
||||
import board
|
||||
|
||||
from kmk.kmk_keyboard import KMKKeyboard as _KMKKeyboard
|
||||
from kmk.matrix import DiodeOrientation
|
||||
|
||||
|
||||
class KMKKeyboard(_KMKKeyboard):
|
||||
row_pins = (board.D10, board.MOSI, board.MISO, board.D8)
|
||||
col_pins = (
|
||||
board.D4,
|
||||
board.D7,
|
||||
board.SCK,
|
||||
)
|
||||
diode_orientation = DiodeOrientation.COLUMNS
|
||||
i2c = board.I2C
|
Reference in New Issue
Block a user