-
Notifications
You must be signed in to change notification settings - Fork 64
/
LightStrip.py
186 lines (152 loc) · 5.62 KB
/
LightStrip.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
"""
# LightStrip.py
# Re-implementing the old NeoPixel class into a LightStrip class
# Using the built-in neopixel class in MicroPython now
"""
import time, neopixel, machine
from Lights import *
from Log import *
class LightStrip(Light):
"""
Although technically a composite light, a neopixel is a PIO-driven set of lights
using a single output pin. So you do not send it composite lights, but just the pin
it is connected to. It is a composite light because it has multiple lights, but
they cannot technically be controlled individually.
"""
FILLS = 0
CHASES = 1
RAINBOW = 2
def __init__(self, pin=2, name='Neopixel', numleds=16, brightness=0.5):
"""
Constructor for neopixel will create its own internal statemachine
Note that if any other state machine is running, this will break the existing
statemachine. This refers to the Pico PIO statemachine, not any software state
machines.
"""
self._name = name
self._pin = pin
self._numleds = numleds
self._brightness = brightness
self._running = False
Log.i(f'Creating a neopixel {name} on pin {pin} with {numleds} LEDs')
self._np = neopixel.NeoPixel(machine.Pin(pin), numleds)
def on(self):
""" Turn all LEDs ON - all white """
self._fill(WHITE)
self._np.write()
Log.i(f'{self._name} ON')
def off(self):
""" Turn all LEDs OFF - all black """
self._running = False
time.sleep(0.1)
self._clear()
self._np.write()
Log.i(f'{self._name} OFF')
def flip(self):
""" Flip the clors on all the LEDs """
for x in range(0, self._numleds):
self._np[x] = (255-self._np[x][0], 255-self._np[x][1], 255-self._np[x][2])
self.show()
Log.i(f'{self._name} flipped')
def setColor(self, color, numPixels= -1):
""" Turn all LEDs up to a set number of pixels to a specific color """
if numPixels < 0 or numPixels > self._numleds:
numPixels = self._numleds
for i in range(numPixels):
self._set_pixel(i, color)
for i in range(numPixels,self._numleds):
self._set_pixel(i, BLACK)
self._np.write()
Log.i(f'{self._name} set color to {color}')
def setPixel(self, pixelno, color, show=True):
"""
Turn a single pixel a specific color
By default the new color is immediately shown.
To make multiple changes, you can speed up by setting
show to False, then calling the show method
"""
self._set_pixel(pixelno, color)
if show:
self._np.write()
Log.i(f'{self._name} set pixel {pixelno} to color {color}')
def show(self):
"""
Shows what is in the color buffer. Useful if previous
setPixel was called without show On
"""
self._np.write()
def setBrightness(self, brightness=0.5):
""" Change the brightness of the pixel 0-1 range """
self._brightness = brightness
Log.i(f'{self._name} set brightness to {brightness}')
def run(self, runtype=0):
""" Run a single cycle of FILLS, CHASES or RAINBOW """
self._running = True
if runtype == LightStrip.FILLS:
Log.i(f'{self._name} running fills')
for color in COLORS:
if not self._running:
break
self.setColor(color)
time.sleep(0.2)
elif runtype == LightStrip.CHASES:
Log.i(f'{self._name} running chases')
for color in COLORS:
if not self._running:
break
self.color_chase(color, 0.01)
else:
Log.i(f'{self._name} running rainbow')
self.rainbow_cycle(0)
self._running = False
################# Internal functions should not be used outside here #################
def _set_pixel(self, p, color):
modifiedcolor = tuple(int(col*self._brightness) for col in color)
self._np[p] = modifiedcolor
def _clear(self):
self._np.fill(BLACK)
pass
def _fill(self, color):
self._np.fill(color)
pass
def color_chase(self, color, wait):
for i in range(self._numleds):
if not self._running:
break
self._set_pixel(i, color)
time.sleep(wait)
self._np.write()
time.sleep(0.2)
def wheel(self, pos):
# Input a value 0 to 255 to get a color value.
# The colours are a transition r - g - b - back to r.
if pos < 0 or pos > 255:
return (0, 0, 0)
if pos < 85:
return (255 - pos * 3, pos * 3, 0)
if pos < 170:
pos -= 85
return (0, 255 - pos * 3, pos * 3)
pos -= 170
return (pos * 3, 0, 255 - pos * 3)
def rainbow_cycle(self, wait):
for j in range(255):
if not self._running:
break
for i in range(self._numleds):
rc_index = (i * 256 // self._numleds) + j
self._set_pixel(i, self.wheel(rc_index & 255))
self._np.write()
time.sleep(wait)
# Some color definitions
BLACK = (0, 0, 0)
RED = (255, 0, 0)
ORANGE = (255, 140, 0)
YELLOW = (255, 200, 0)
GREEN = (0, 255, 0)
BLUE = (0, 0, 255)
PURPLE = (180, 0, 255)
CYAN = (0, 255, 255)
INDIGO = (75, 0, 130)
WHITE = (255, 255, 255)
COLORS = (BLACK, RED, YELLOW, GREEN, CYAN, BLUE, PURPLE, WHITE, ORANGE)