-
Notifications
You must be signed in to change notification settings - Fork 0
/
neopixel_demo.py
49 lines (40 loc) · 1.05 KB
/
neopixel_demo.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
import time
def demo(np):
n = np.n
# cycle
for i in range(4 * n):
for j in range(n):
np[j] = (0, 0, 0)
np[i % n] = (255, 255, 255)
np.write()
time.sleep_ms(25)
# bounce
for i in range(4 * n):
for j in range(n):
np[j] = (0, 0, 128)
if (i // n) % 2 == 0:
np[i % n] = (0, 0, 0)
else:
np[n - 1 - (i % n)] = (0, 0, 0)
np.write()
time.sleep_ms(60)
# fade in/out
for i in range(0, 4 * 256, 8):
for j in range(n):
if (i // 256) % 2 == 0:
val = i & 0xff
else:
val = 255 - (i & 0xff)
np[j] = (val, 0, 0)
np.write()
# clear
for i in range(n):
np[i] = (0, 0, 0)
np.write()
import machine, neopixel
np = neopixel.NeoPixel(machine.Pin(4), 8, bpp=4)
np[0] = (255, 0, 0, 128) # Orange in an RGBY Setup
np[1] = (0, 255, 0, 128) # Yellow-green in an RGBY Setup
np[2] = (0, 0, 255, 128) # Green-blue in an RGBY Setup
np.write()
demo(np)