-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathled.py
261 lines (200 loc) · 7.19 KB
/
led.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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
#!/usr/bin/env python
"""
888
888
888
88888b. .d88b. 88888b. .d88b. 888 888
888 "88b d88""88b 888 "88b d88""88b `Y8bd8P'
888 888 888 888 888 888 888 888 X88K
888 888 Y88..88P 888 d88P Y88..88P .d8""8b. http://nobox.io
888 888 "Y88P" 88888P" "Y88P" 888 888 http://github.com/noboxio
Author: Brian McGinnis and Patrick McGinnis
Date: 6/23/17
"""
import time
from neopixel import *
from multiprocessing import Process
import colour
import threading
import re
"""NeoPixel class
This is the NeoPixel class
"""
class NeoPixel:
def __init__(self):
"""Create an NeoPixel object.
Creates an NeoPixel object that is based off of the neopixel adafruit
stuff
"""
LED_COUNT = 16
LED_PIN = 10
LED_FREQ_HZ = 800000
LED_DMA = 5
LED_BRIGHTNESS = 255
LED_INVERT = False
LED_CHANNEL = 0
LED_STRIP = ws.WS2811_STRIP_RGB
self.strip = Adafruit_NeoPixel(
LED_COUNT,
LED_PIN,
LED_FREQ_HZ,
LED_DMA,
LED_INVERT,
LED_BRIGHTNESS,
LED_CHANNEL,
LED_STRIP)
self.strip.begin()
def _log(self, message):
"""Print the log message with the object id.
message -- string that needs to be logged
"""
print("|" + str(self) + "| " + str(message) )
def rainbow(self, wait_ms=1, iterations=1):
"""Make the LED go rainbow.
The led will go between the different colors with a wait and iteration.
wait_ms -- int miliseconds to wait between changes default=1
iterations -- number of times to repeat the cycle default=1
"""
for j in range(256 * iterations):
for i in range(self.strip.numPixels()):
self.strip.setPixelColor(i, self.wheel((i + j) & 255))
self.strip.show()
time.sleep(wait_ms / 1000.0)
def strobe(self):
"""Strobe the led.
Turn the led on and off rapidly
"""
wait_ms = 50
for j in range(256):
for q in range(3):
for i in range(0, self.strip.numPixels(), 3):
self.strip.setPixelColor(i + q, self.wheel((i + j) % 255))
self.strip.show()
time.sleep(wait_ms / 1000.0)
for i in range(0, self.strip.numPixels(), 3):
self.strip.setPixelColor(i + q, 0)
def wheel(self, pos):
"""Change the color based on the 'wheel'.
Change the color based on the wheel determined by adafruit
pos -- int position on the wheel
"""
if pos < 85:
return Color(pos * 3, 255 - pos * 3, 0)
elif pos < 170:
pos -= 85
return Color(255 - pos * 3, 0, pos * 3)
else:
pos -= 170
return Color(0, pos * 3, 255 - pos * 3)
def custom_color_rgb(self, r, g, b):
"""Change the color to a custom color.
Change the color of the LED to the specified color R G B values
r -- int value of red
g -- int value of green
b -- int value of blue
"""
self.strip.setPixelColorRGB(0, r, g, b)
self.strip.show()
def custom_color_name(self, color_name):
"""Change the color of the LED to the specified name color.
Change the color fo the LED to the specified color value
color_name -- valid color name or id using colour module
"""
try:
c = colour.Color(color_name)
except ValueError:
self._log("INVALID COLOR SELECTION")
self.custom_color_rgb(int(c.red * 255),
int(c.green * 255),
int(c.blue * 255))
def off(self):
"""Turn the led off.
Turning the led off just sets the color to black.
"""
self.custom_color_rgb(0, 0, 0)
def __dir__(self):
return(['off', 'custom_color_name', 'custom_color_rgb', 'strobe', 'rainbow'])
class LedManager(threading.Thread):
"""LedManager is basically a manager for the led objects.
it functions as a thread so that the led can be started, stopped or
whatever whenever
"""
#not sure if you can set the default like this but we shall see lol
def __init__(self, led=NeoPixel()):
"""Create an LED Manager type.
led -- the led that is to be controlled by this process
"""
threading.Thread.__init__(self)
self.led = led
self.commands = list()
def _log(self, message):
"""Print the log message with the object id.
message -- string that needs to be logged
"""
print("|" + str(self) + "| " + str(message) )
def run(self):
""" run as thread"""
while(True):
if self.commands:
cmd = self.commands.pop(0)
self.execute_command(cmd)
def restart(self):
"""Delete the led object and create a new one.
This is an attempt to be able to stop a current command and start a new
"""
self.empty_commands()
del(self.led)
self.led = NeoPixel()
def wait(self, duration):
"""Wait for a specified period of time.
Cause this thread to sleep for a specified duration.
duration -- amount of seconds to make this thread sleep.
"""
time.sleep(duration)
def add_command(self, command):
"""Add a command to the commands list.
Append the command to the commands list.
command -- the text command to appent to the commands list.
"""
self.commands.append(command)
def execute_command(self, command):
"""Execute a command in text form"""
regex = re.compile(r"^\w+") #selects just the first word
command_method = regex.match(command).group()
self._log("command_method: " + command_method)
# check to see if the command is in the manager
if command_method in dir(self):
#matching command was foudn
self._log("matching command found")
self._log("self." + command)
try:
eval("self." + command)
except:
self._log("there was an exception manager here")
else:
self._log("no matching command found in LedManager")
if self.led is None:
self._log("LED MANAGER: no led is currently active")
else:
try:
eval("self.led." + command)
except:
self._log("there was an exception here")
def empty_commands(self):
"""Empty the commands list.
empties the commands list
"""
self.commands = list()
def stop(self):
"""Stop all leds.
they will be at their last state
"""
self.__clearProcess__()
def __clearProcess__(self):
"""Stop all existing process under this process.
stops all led processes running.
"""
if self.process is not None:
self.process.terminate()
def __dir__(self):
return(['wait', 'restart', 'empty_commands'])