Skip to content

Commit f59de93

Browse files
committed
Fix.
1 parent 4864050 commit f59de93

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
from adafruit_circuitplayground import cp
22

3-
cp.pixels[0] = ((0, 0, 3))
3+
while True:
4+
cp.pixels[0] = (0, 0, 3)
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
from adafruit_circuitplayground import cp
22

3-
cp.pixels.fill((0, 0, 3))
3+
while True:
4+
cp.pixels.fill((0, 0, 3))

0 commit comments

Comments
 (0)