-
Notifications
You must be signed in to change notification settings - Fork 0
/
rpi_boombox.py
executable file
·419 lines (328 loc) · 11 KB
/
rpi_boombox.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
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
#!/usr/bin/python
#import logging
import pylirc
import mpd
import os
import time
import re
import feedparser
from time import sleep, clock
import spidev
import VFD
from mpd import MPDClient, MPDError, CommandError
#logging.basicConfig(filename='vfd.log',level=logging.INFO)
keep_running = 1
starttime=clock() # used to refresh display
# General Menu processing class
class Menu():
def __init__(self):
self.load_playlist = 0
self.current_col = 0
self.current_row = 0
# current_display: m=mpd, t=time, w=weather
self.running_pgm = "m"
# dictionary of menu choices, by level of how deep into the menu
self.menutext = {"1.":"mpd time weather"}
self.lvl = "1." # menu level
# three choices at cursor column 0, 4 and 9
self.lvl1_cursors={0:1, 4:2, 9:3}
self.current_cursors = self.lvl1_cursors
self.this_cursor = self.current_cursors[self.current_col]
self.vol = 0
def show_menu(self):
#print ("in show_menu")
thistext=self.menutext[self.lvl]
vfd.blank_lines()
vfd.setCursor(0,0)
vfd.text(thistext)
vfd.setCursor(0,0)
vfd.blink_on()
self.current_col=0
self.current_row=0
if self.lvl == "1.":
self.current_cursors=self.lvl1_cursors
elif self.lvl == "1.1":
self.current_cursors=self.lvl1_1_cursors
def nav(self, direction):
#get the current level cursor assignments for menu choices
self.this_cursor = self.current_cursors[self.current_col]
if direction == "R":
self.this_cursor = self.this_cursor + 1
elif direction == "L":
self.this_cursor = self.this_cursor - 1
if self.this_cursor < 1:
self.this_cursor = 1
if self.this_cursor > len(self.current_cursors):
self.this_cursor = len(self.current_cursors)
for col, nbr in self.current_cursors.items():
if nbr == self.this_cursor:
self.current_col = col
vfd.setCursor(self.current_col,0)
class PollerError(Exception):
"""Fatal error in poller."""
class MPDPoller(object):
def __init__(self, host="localhost", port="6600", password=None):
self._host = host
self._port = port
self._password = password
self._client = MPDClient()
self.song = "song"
def connect(self):
try:
self._client.connect(self._host, self._port)
# Catch socket errors
except IOError as (errno, strerror):
raise PollerError("Could not connect to '%s': %s" %
(self._host, strerror))
# Catch all other possible errors
# ConnectionError and ProtocolError are always fatal. Others may not
# be, but we don't know how to handle them here, so treat them as if
# they are instead of ignoring them.
except MPDError as e:
raise PollerError("Could not connect to '%s': %s" %
(self._host, e))
if self._password:
try:
self._client.password(self._password)
# Catch errors with the password command (e.g., wrong password)
except CommandError as e:
raise PollerError("Could not connect to '%s': "
"password commmand failed: %s" %
(self._host, e))
# Catch all other possible errors
except (MPDError, IOError) as e:
raise PollerError("Could not connect to '%s': "
"error with password command: %s" %
(self._host, e))
def disconnect(self):
# Try to tell MPD we're closing the connection first
try:
self._client.close()
# If that fails, don't worry, just ignore it and disconnect
except (MPDError, IOError):
pass
try:
self._client.disconnect()
# Disconnecting failed, so use a new client object instead
# This should never happen. If it does, something is seriously broken,
# and the client object shouldn't be trusted to be re-used.
except (MPDError, IOError):
self._client = MPDClient()
def poll(self):
try:
self.song = self._client.currentsong()
# Couldn't get the current song, so try reconnecting and retrying
except (MPDError, IOError):
# No error handling required here
# Our disconnect function catches all exceptions, and therefore
# should never raise any.
self.disconnect()
try:
self.connect()
# Reconnecting failed
except PollerError as e:
raise PollerError("Reconnecting failed: %s" % e)
try:
self.song = self._client.currentsong()
# Failed again, just give up
except (MPDError, IOError) as e:
raise PollerError("Couldn't retrieve current song: %s" % e)
# Hurray! We got the current song without any errors!
#print self.song
blocking = 0; #set to 1 for blocking = on
conf = "/home/pi/scripts/lirc.config"
pylirc.init("pylirc", conf, blocking)
# initialize mpc client
mpc = mpd.MPDClient()
# initalize SPI
vfd=VFD.SPI()
vfd.init_VFD()
#initialize Menu processing
menu=Menu()
#menu.init_Menu()
#initialize Poller
poller = MPDPoller()
poller.connect()
def mpd_info():
menu.running_pgm = "m"
#song=mpc.currentsong()
poller.poll()
song = poller.song
#print song
#status=mpc.status()
#vol=status['volume']
#print vol
# Display the song title and author on the VFD
vfd.blank_lines()
sleep (0.1)
if 'title' in song:
SongTitle = song['title']
elif 'file' in song:
SongTitle = song['file']
else:
SongTitle = 'Song Title Unknown'
if 'name' in song:
Station = song['name']
else:
Station = 'Station Unknown'
a = re.split(": | - ",SongTitle)
#print(a[0])
vfd.setCursor(0,0)
vfd.text(a[0])
if len(a)>1:
#print(a[1])
vfd.setCursor(0,1)
# Send SongTitle to VFD
vfd.text(a[1])
def mpd_playlist(pl):
mpc.clear()
mpc.load(pl)
mpc.play(0)
mpd_info()
def select_menu():
#print ("this_cursor")
#print (menu.this_cursor)
next_lvl=menu.lvl+str(menu.this_cursor)
ret_val = menu.menutext.get(next_lvl, None)
if ret_val == None:
this_rtn = run_rtn.get(next_lvl, None)
# need to call the routine by reference
menu.lvl = "1."
menu.this_cursor = menu.current_cursors[0]
vfd.blink_off()
this_rtn()
else:
# descend into the menu tree
menu.lvl = next_lvl
#print ("next lvl")
#print menu.lvl
menu.show_menu()
def prev():
mpc.previous()
mpd_info()
def next():
mpc.next()
mpd_info()
def incr_vol():
status=mpc.status()
vol=status['volume']
if int(vol) >= 95:
vol=95
vfd.volume(int(vol),5)
mpc.setvol(int(vol)+5)
def decr_vol():
status=mpc.status()
vol=status['volume']
if int(vol) <= 5:
vol = 5
vfd.volume(int(vol),-5)
mpc.setvol(int(vol)-5)
def time_info():
#print ("in time info")
vfd.blank_lines()
vfd.setCursor(0,0)
vfd.text(time.strftime(" %B %d %I:%M %p", time.localtime()))
menu.running_pgm = "t"
def weather_info():
d = feedparser.parse('http://www.wunderground.com/auto/rss_full/CA/Pleasant_Hill.xml')
line = str(d.entries[0].summary)
line = line.replace(":","|")
a = line.split("|")
#print "Printing a"
#print a
#print "Printing mytemp:"
mytemp = str(a[1])
mytemp = mytemp.replace("°", " ")
mytemp = mytemp.replace("°", " ")
mytemp = mytemp.replace(" ", "")
mytemp = mytemp.split("/")
b = a[11].split("/")
#print a[1] # Temperature Example: 51.7°F / 10.9°C
#print mytemp[0]
#print a[7] # Conditions
#print a[5] # Barometer
#print a[3] # Humidity
#print b[0] # Wind Speed - also contains image source, removed by split into array b
#print a[9] # Wind Direction
remove_spcs = mytemp[0]+a[7]+a[3]+b[0]+a[9] # without Barometer
to_VFD = remove_spcs.replace(" ","|")
#print to_VFD
vfd.blank_lines()
vfd.setCursor(0,0)
vfd.text("Now: Pleasant Hill")
vfd.setCursor(0,1)
vfd.text(to_VFD)
# set weather to show on the display
menu.running_pgm = "w"
def current_display():
#tstamp = time.strftime("%Y/%m/%d %H:%M:%S", time.localtime())
#logging.info(tstamp)
#print menu.running_pgm
if menu.running_pgm == "m": # we are displaying mpd info now
mpd_info()
if menu.running_pgm == "t": #get the time and display it
time_info()
if menu.running_pgm == "w": # now we are showing the weather
weather_info()
def quit():
vfd.blank_lines()
vfd.setCursor(0,0)
vfd.text("<= Shutting Down! =>")
vfd.setCursor(0,1)
vfd.text("Off at red light out")
mpc.setvol(5)
global keep_running
keep_running=0
commands={
"play": lambda: mpc.play(),
"pause": lambda: mpc.pause(),
"prev": lambda: prev(),
"next": lambda: next(),
"random": lambda: random(),
"quit": lambda: quit(),
"voldown": lambda: decr_vol(),
"volup": lambda: incr_vol(),
"left": lambda: menu.nav("L"),
"right": lambda: menu.nav("R"),
"enter": lambda: select_menu(),
"bright": lambda: vfd.brightnessAdjust(),
"playlist1": lambda: mpd_playlist("webstream"),
"playlist2": lambda: mpd_playlist("classical_sd"),
"playlist3": lambda: mpd_playlist("newage"),
"playlist4": lambda: mpd_playlist("rock"),
"5": lambda: search(5),
"6": lambda: search(6),
"7": lambda: search(7),
"8": lambda: search(8),
"9": lambda: search(9),
"back": lambda: mpd_info(),
"setup": lambda: menu.show_menu()
}
# dictionary of methods to run when menu choice is made
run_rtn = {"1.1":mpd_info,
"1.2":time_info,
"1.3":weather_info
}
#print("<==== Mainline Starts ====>")
while keep_running:
sleep(.25) # keep the loop from eating up CPU time!
if (time.time() - starttime) >= 15: # refresh the screen every 15 seconds
starttime=time.time()
current_display()
presses=pylirc.nextcode(1)
if presses == None:
continue
for press in presses:
try:
cmd=commands[press["config"]]
except KeyError:
print "getting KeyError"
continue
try:
mpc.connect("localhost", 6600)
cmd()
mpc.disconnect()
except mpd.ConnectionError:
pass
pylirc.exit()
os.system("sudo shutdown -h now")