From 6204ca349c48b28382f43e8f9b9d241d3d1915b6 Mon Sep 17 00:00:00 2001 From: foamyguy Date: Wed, 29 Jan 2025 14:23:14 -0600 Subject: [PATCH] corrected neopixel pin & count --- .../CircuitPython_Sparkle_Motion_IR_Remote/code.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sparkle_Motion_Examples/CircuitPython_Sparkle_Motion_IR_Remote/code.py b/Sparkle_Motion_Examples/CircuitPython_Sparkle_Motion_IR_Remote/code.py index c6eac085f..48bbce7db 100644 --- a/Sparkle_Motion_Examples/CircuitPython_Sparkle_Motion_IR_Remote/code.py +++ b/Sparkle_Motion_Examples/CircuitPython_Sparkle_Motion_IR_Remote/code.py @@ -22,7 +22,7 @@ t0 = next_heartbeat = time.monotonic() -pixel = neopixel.NeoPixel(board.NEOPIXEL, 1) +pixel = neopixel.NeoPixel(board.D21, 8) brightness = 1 pixel.brightness = brightness / 10