-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlights.py
145 lines (123 loc) · 5.09 KB
/
lights.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
import time
import numpy as np
import random
import redis
from PIL import ImageColor
from rpi_ws281x import *
from constants import Modes, RedisBool, RedisKeys
r = redis.Redis(host='localhost', port=6379, db=0)
LED_COUNT = 300 # Number of LED pixels.
LED_PIN = 18 # GPIO pin connected to the pixels (18 uses PWM!).
LED_FREQ_HZ = 800000 # LED signal frequency in hertz (usually 800khz)
LED_DMA = 10 # DMA channel to use for generating signal (try 10)
LED_INVERT = False # True to invert the signal (when using NPN transistor level shift)
LED_CHANNEL = 0 # set to '1' for GPIOs 13, 19, 41, 45 or 53
BREATHING_FREQUENCY = 200
BREATHING_INTENSITY = 5
MIN_BRIGHTNESS = 3
MAX_BRIGHTNESS = 255
SPARKLE_TTL = 30
SPARKLES_PER_ITERATION = 1
SPARKLE_WHITE = 200
def wheel(pos):
"""Generate rainbow colors across 0-255 positions."""
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 calculate_brightness(base_brightness, breathing_offset):
return int(round(
np.clip(
int(base_brightness) +
BREATHING_INTENSITY * np.arcsin(breathing_offset / BREATHING_FREQUENCY),
MIN_BRIGHTNESS,
MAX_BRIGHTNESS
)
))
class neopixel_controller():
def __init__(self):
self.power = True
self.brightness = MIN_BRIGHTNESS
self.mode = Modes.RAINBOW.value
self.breathing_offset = 0
self.breathing_parity = 1
self.sparkle_indices = {}
pipe = r.pipeline()
pipe.set(RedisKeys.POWER.value, RedisBool.TRUE.value)
pipe.set(RedisKeys.BRIGHTNESS.value, MIN_BRIGHTNESS)
pipe.set(RedisKeys.MODE.value, Modes.RAINBOW.value)
pipe.set(RedisKeys.HEX.value, "32feff") #Light blue
pipe.execute()
self.strip = Adafruit_NeoPixel(LED_COUNT, LED_PIN, LED_FREQ_HZ, LED_DMA, LED_INVERT, self.brightness, LED_CHANNEL)
self.strip.begin()
self.j = 0
def wipe(self):
self.set_strip_color(Color(0,0,0), False)
def advance(self):
if self.power:
if self.mode == Modes.RAINBOW.value:
self.advance_rainbow()
if self.mode == Modes.STATIC.value:
pass
def set_pixel_color_with_sparkles(self, index, color, respect_sparkles=True):
if respect_sparkles and index in self.sparkle_indices:
return
self.strip.setPixelColor(index, color)
def set_strip_color(self, color, respect_sparkles=True):
for i in range(self.strip.numPixels()):
self.set_pixel_color_with_sparkles(i, color, respect_sparkles)
self.strip.show()
def redis_sync(self):
pipe = r.pipeline()
pipe.get(RedisKeys.POWER.value)
pipe.get(RedisKeys.BRIGHTNESS.value)
pipe.get(RedisKeys.MODE.value)
pipe.get(RedisKeys.HEX.value)
results = pipe.execute()
power, brightness, mode, hex_val = list(map(lambda redis_val: redis_val.decode("utf-8"), results))
if power == RedisBool.FALSE.value and self.power:
self.wipe()
self.power = False
if power == RedisBool.TRUE.value and not self.power:
self.power = True
self.breathing_offset = (self.breathing_offset + self.breathing_parity)
if abs(self.breathing_offset) == BREATHING_FREQUENCY:
self.breathing_parity *= -1
adjusted_brightness = calculate_brightness(brightness, self.breathing_offset)
self.strip.setBrightness(adjusted_brightness)
self.mode = mode
if mode == Modes.STATIC.value and self.power:
hex_color = '#' + hex_val
rgb_color = ImageColor.getcolor(hex_color, "RGB")
self.set_strip_color(Color(*rgb_color))
return
def advance_rainbow(self):
if self.j == 256:
self.j = 0
else:
for i in range(self.strip.numPixels()):
self.set_pixel_color_with_sparkles(i, wheel((i+self.j) & 255))
self.strip.show()
self.j += 1
def update_sparkles(self):
new_indices = random.sample(range(0, LED_COUNT), SPARKLES_PER_ITERATION)
for new_index in new_indices:
self.sparkle_indices[new_index] = SPARKLE_TTL
self.set_pixel_color_with_sparkles(new_index, Color(SPARKLE_WHITE,SPARKLE_WHITE,SPARKLE_WHITE), False)
for index in list(self.sparkle_indices.keys()): #since we are modifying dict keys while iterating
self.sparkle_indices[index] -= 1
if self.sparkle_indices[index] == 0:
del self.sparkle_indices[index]
if __name__ == '__main__':
controller = neopixel_controller()
try:
while True:
controller.redis_sync()
controller.update_sparkles()
controller.advance()
except KeyboardInterrupt:
controller.wipe()