fix variable name

This commit is contained in:
Obie Hinojosa 2025-07-03 21:56:49 -05:00
parent 771ed57c81
commit f0dcb65573

View File

@ -3,8 +3,8 @@ import machine, neopixel, time
# defines `np`, pin the led is on = 16, number of leds = 1 # defines `np`, pin the led is on = 16, number of leds = 1
np = neopixel.NeoPixel(machine.Pin(16), 1) np = neopixel.NeoPixel(machine.Pin(16), 1)
diddlydoobalobby = 1 diddlydoobalooby = 1
while diddlydoobalobby > 0: while diddlydoobalooby > 0:
np[0] = (75, 0, 0) np[0] = (75, 0, 0)
np.write() np.write()
time.sleep(0.75) time.sleep(0.75)