restructured

This commit is contained in:
2022-01-14 11:26:42 +01:00
parent 38c95b587c
commit 1b67de0db9
24 changed files with 69 additions and 104 deletions

View File

@@ -0,0 +1,15 @@
import board
io_extenders_pinout: list[tuple[int, int, int]] = [
(0x20, board.GP1, board.GP0)]
pinout: list[tuple[int, int]] = [
(0, 7), (0, 11), (0, 15), (0, 0),
(0, 8), (0, 4), (0, 14), (0, 1),
(0, 6), (0, 10), (0, 13), (0, 2),
(0, 9), (0, 5), (0, 12), (0, 3)
]
rgb_pins: tuple[int, int, int] = (board.LED_R, board.LED_G, board.LED_B)
debug_repl = True