Update network.py for Issue #7

Code prints the status_neopixel to stdout when it should only, perhaps, do that on debug.  Fixes #7
This commit is contained in:
Anne Barela 2025-08-14 09:39:11 -04:00 committed by GitHub
parent 9175c448f6
commit 153b177a3f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -88,7 +88,7 @@ class Network(NetworkBase):
image_position=None,
image_dim_json_path=None,
):
print(f"status_neopixel", status_neopixel)
# print(f"status_neopixel", status_neopixel)
if isinstance(status_neopixel, microcontroller.Pin):
status_led = neopixel.NeoPixel(status_neopixel, 1, brightness=0.2)
elif isinstance(status_neopixel, neopixel.NeoPixel):