Files

16 lines
381 B
Python
Executable File

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