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 dbf3560 commit b8603dcCopy full SHA for b8603dc
adafruit_matrixportal/network.py
@@ -62,6 +62,12 @@ def __init__(self, **kwargs):
62
if "debug" in kwargs:
63
debug = kwargs.pop("debug")
64
65
+ if os.uname().sysname != "samd51":
66
+ if "external_spi" in kwargs:
67
+ kwargs.pop("external_spi")
68
+ if "esp" in kwargs:
69
+ kwargs.pop("esp")
70
+
71
status_neopixel = kwargs.pop("status_neopixel", None)
72
if status_neopixel:
73
status_led = neopixel.NeoPixel(status_neopixel, 1, brightness=0.2)
0 commit comments