We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31c385f commit 684fbf5Copy full SHA for 684fbf5
repl.py
@@ -72,6 +72,8 @@
72
logger.debug("Initializing Config")
73
config: Config = Config("config.json")
74
75
+mux_reset = initialize_pin(logger, board.MUX_RESET, digitalio.Direction.OUTPUT, False)
76
+
77
# TODO(nateinaction): fix spi init
78
spi0 = _spi_init(
79
logger,
@@ -260,9 +262,8 @@ def all_faces_on():
260
262
## Face Sensor Stuff ##
261
263
264
# This is the TCA9548A I2C Multiplexer
-mux_reset = initialize_pin(logger, board.MUX_RESET, digitalio.Direction.OUTPUT, True)
265
all_faces_on()
-
266
+mux_reset.value = True
267
tca = TCA9548A(i2c1, address=int(0x77))
268
269
0 commit comments