forked from doumatso/RaspberryPi-LedStrip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfading.py
186 lines (134 loc) · 3.65 KB
/
fading.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
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# -----------------------------------------------------
# File fading.py
# Authors Popoklopsi
# License GPLv3
# Web http://popoklopsi.de
# -----------------------------------------------------
#
# Copyright (C) 2014-2015 Popoklopsi
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>
#
# This script needs running pigpio (http://abyz.co.uk/rpi/pigpio/)
###### CONFIGURE THIS ######
# The Pins. Use Broadcom numbers.
RED_PIN = 17
GREEN_PIN = 22
BLUE_PIN = 24
# Number of color changes per step (more is faster, less is slower).
# You also can use 0.X floats.
STEPS = 1
###### END ######
import os
import sys
import termios
import tty
import pigpio
import time
from thread import start_new_thread
bright = 255
r = 255.0
g = 0.0
b = 0.0
brightChanged = False
abort = False
state = True
pi = pigpio.pi()
def updateColor(color, step):
color += step
if color > 255:
return 255
if color < 0:
return 0
return color
def setLights(pin, brightness):
realBrightness = int(int(brightness) * (float(bright) / 255.0))
pi.set_PWM_dutycycle(pin, realBrightness)
def getCh():
fd = sys.stdin.fileno()
old_settings = termios.tcgetattr(fd)
try:
tty.setraw(fd)
ch = sys.stdin.read(1)
finally:
termios.tcsetattr(fd, termios.TCSADRAIN, old_settings)
return ch
def checkKey():
global bright
global brightChanged
global state
global abort
while True:
c = getCh()
if c == '+' and bright < 255 and not brightChanged:
brightChanged = True
time.sleep(0.01)
brightChanged = False
bright = bright + 1
print ("Current brightness: %d" % bright)
if c == '-' and bright > 0 and not brightChanged:
brightChanged = True
time.sleep(0.01)
brightChanged = False
bright = bright - 1
print ("Current brightness: %d" % bright)
if c == 'p' and state:
state = False
print ("Pausing...")
time.sleep(0.1)
setLights(RED_PIN, 0)
setLights(GREEN_PIN, 0)
setLights(BLUE_PIN, 0)
if c == 'r' and not state:
state = True
print ("Resuming...")
if c == 'c' and not abort:
abort = True
break
start_new_thread(checkKey, ())
print ("+ / - = Increase / Decrease brightness")
print ("p / r = Pause / Resume")
print ("c = Abort Program")
setLights(RED_PIN, r)
setLights(GREEN_PIN, g)
setLights(BLUE_PIN, b)
while abort == False:
if state and not brightChanged:
if r == 255 and b == 0 and g < 255:
g = updateColor(g, STEPS)
setLights(GREEN_PIN, g)
elif g == 255 and b == 0 and r > 0:
r = updateColor(r, -STEPS)
setLights(RED_PIN, r)
elif r == 0 and g == 255 and b < 255:
b = updateColor(b, STEPS)
setLights(BLUE_PIN, b)
elif r == 0 and b == 255 and g > 0:
g = updateColor(g, -STEPS)
setLights(GREEN_PIN, g)
elif g == 0 and b == 255 and r < 255:
r = updateColor(r, STEPS)
setLights(RED_PIN, r)
elif r == 255 and g == 0 and b > 0:
b = updateColor(b, -STEPS)
setLights(BLUE_PIN, b)
print ("Aborting...")
setLights(RED_PIN, 0)
setLights(GREEN_PIN, 0)
setLights(BLUE_PIN, 0)
time.sleep(0.5)
pi.stop()