-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathradio.py
301 lines (255 loc) · 8.4 KB
/
radio.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
# /usr/bin/python3
import vlc
import requests
import RPi.GPIO as GPIO
import time
#Import LCD libraty
import I2C_LCD_driver
# shuting down Raspberry Pi import
from subprocess import call
#video stream from youtube
#import pafy
print ("Import done!")
class radio:
@classmethod
def init(cls):
# define pinout
cls.PIN_SHUTDOWN = 22
cls.PIN_PREV = 23
cls.PIN_NEXT = 24
# set class variables
cls.nos = 0 # total number of stations
cls.stationName = ""
cls.stationMRL = ""
cls.stationNumberCurrent = 0
cls.updated = 0 # flag to notify the station change
# define inputs and outputs
GPIO.setmode(GPIO.BOARD) #use BCM numbering
GPIO.setup(cls.PIN_NEXT, GPIO.IN, pull_up_down=GPIO.PUD_DOWN)
GPIO.setup(cls.PIN_PREV, GPIO.IN, pull_up_down=GPIO.PUD_DOWN)
# GPIO.setup(cls.PIN_SHUTDOWN, GPIO.IN, pull_up_down=GPIO.PUD_DOWN)
#Init player
cls.player = vlc.MediaPlayer()
cls.player.audio_set_volume(70)
#Set up station list file and current
cls.stationList = "/home/pi/Desktop/Radio/URLs.txt"
cls.stationListLast = "/home/pi/Desktop/Radio/LastStation.txt"
#Get the number of stations in the station list
cls.__station_NumberTotal()
#Read the last station and set it up
cls.__station_NumberCurrent()
cls.__station_SetNew(cls.stationNumberCurrent)
cls.setMRL(cls.stationMRL)
#Initialize the LCD and display the current station
cls.lcd_init()
cls.lcd_clear()
cls.lcd_write_name()
cls.lcd_write_station_number()
cls.lcd_write_time()
# define events on button press
GPIO.add_event_detect(cls.PIN_PREV, GPIO.FALLING, callback=cls.__station_Prev, bouncetime=500)
GPIO.add_event_detect(cls.PIN_NEXT, GPIO.FALLING, callback=cls.__station_Next, bouncetime=500)
# GPIO.add_event_detect(cls.PIN_SHUTDOWN, GPIO.FALLING, callback=cls.__shutdown, bouncetime=500)
#copy the GitHub URLs
try:
url_git = "https://raw.githubusercontent.com/hadato/Internet_Radio_v2/master/URL"
r = requests.get(url_git, allow_redirects=True)
with open("/home/pi/Desktop/Radio/Git_URLs.txt", 'bw') as f:
f.write(r.content)
except:
print("Error getting the GitHub file")
@classmethod
def setMRL(cls, MRL):
cls.player.set_mrl(MRL)
@classmethod
def play(cls):
cls.player.play()
@classmethod
def stop(cls):
cls.player.stop
# Function to find the total number of station on the list
@classmethod
def __station_NumberTotal(cls):
try:
with open(cls.stationList, 'r') as f:
for i,l in enumerate(f,1):
pass
cls.nos = i
return 0
except:
pritn("Problem reading the station file")
return 1
@classmethod
def __station_NumberCurrent(cls):
try:
with open(cls.stationListLast, 'r') as f:
lines = f.readlines()
cls.stationNumberCurrent = lines[2]
except:
cls.__station_new(1)
print("Unable to read the last station, reset to 1")
@classmethod
def __station_NumberNew(cls, newStationNumber):
with open(cls.stationListLast, 'w') as f:
f.write("# This is the file to store the last station number" + '\n')
f.write("Last station number:" + '\n')
f.write(str(newStationNumber))
@classmethod
def __station_Read(cls, stationNumber):
try:
with open(cls.stationList, 'r') as f:
lines = f.readlines()
name, mrl = lines[int(stationNumber)].split(';')
mrl = mrl.split('\n')
mrl = mrl[0]
cls.stationName = name
cls.stationMRL = mrl
return 0
except:
print("Error while opening URLs.txt")
return 1
@classmethod
def __station_SetNew(cls, newStationNumber):
try:
cls.__station_Read(newStationNumber)
cls.__station_NumberNew(newStationNumber)
print(cls.stationName)
print(cls.stationMRL)
return 0
except:
print("Error setting a new station")
return 1
@classmethod
def __station_Next(cls, trash = 0):
try:
cls.updated = 1
cls.stop()
cls.__station_NumberCurrent()
cls.__station_SetNew((int(cls.stationNumberCurrent) + 1) % cls.nos)
cls.setMRL(cls.stationMRL)
cls.play()
return 0
except:
print("Error while setting next station")
return 1
@classmethod
def __station_Prev(cls, trash = 0):
try:
cls.updated = 1
cls.stop()
cls.__station_NumberCurrent()
cls.__station_SetNew((int(cls.stationNumberCurrent) - 1) % cls.nos)
cls.setMRL(cls.stationMRL)
cls.play()
return 0
except:
print("Error while setting previous station")
return 1
@classmethod
def __shutdown(cls, trash):
cls.updated = 2
time.sleep(0.1)
if GPIO.input(cls.PIN_SHUTDOWN)==0:
cls.lcd_clear()
time.sleep(0.1)
cls.lcd.lcd_display_string("Mej krasny den", 2, 0)
time.sleep(0.2)
call("sudo shutdown -h now", shell=True)
return 0
@classmethod
def lcd_init(cls):
try:
cls.lcd = mylcd = I2C_LCD_driver.lcd()
return 0
except:
print("Error while initializing LCD")
return 1
@classmethod
def lcd_write_name(cls):
try:
cls.lcd.lcd_display_string(cls.stationName[0:19], 1, 0)
cls.lcd.lcd_display_string(cls.stationName[20:39], 2, 0)
return 0
except:
print("Error writing name")
return 1
@classmethod
def lcd_write_time(cls):
try:
cls.lcd.lcd_display_string(time.strftime("%d.%m.%Y %H:%M"), 4, 0)
time.sleep(0.001)
return 0
except:
print("Error writing time")
return 1
@classmethod
def lcd_write_station_number(cls):
try:
cls.lcd.lcd_display_string("Cislo stanice: "+str(int(cls.stationNumberCurrent) + 1), 3, 0)
return 0
except:
print("Error writing station number")
return 1
@classmethod
def lcd_clear(cls):
try:
cls.lcd.lcd_clear()
return 0
except:
print("Error cleaning diplay")
return 1
@classmethod
def lcd_clear_time(cls):
try:
cls.lcd.lcd_display_string(" ", 4, 0)
return 0
except:
print("Error cleaning time line")
return 1
@classmethod
def display_update(cls):
try:
if (cls.updated == 2):
time.sleep(3)
elif (radio.updated == 1):
cls.update = 0
cls.lcd_clear()
cls.lcd_write_name()
cls.lcd_write_station_number()
cls.lcd_write_time()
else:
cls.lcd_write_time()
return 0
except:
pritn("Error updating display")
return 1
@classmethod
def __error(cls):
pass
@classmethod
def __del__(cls):
GPIO.cleanup()
cls.player.stop()
cls.player.release()
print("Player cleaned")
# Main initialization
radio.init()
radio.play()
# Main loop
try:
while True:
if (radio.updated == 2):
time.sleep(3)
elif (radio.updated == 1):
radio.updated = 0
radio.lcd_clear()
radio.lcd_write_name()
radio.lcd_write_station_number()
radio.lcd_write_time()
else:
radio.lcd_write_time()
radio.display_update()
time.sleep(0.2)
# End of the program
except KeyboardInterrupt:
pass