-
Notifications
You must be signed in to change notification settings - Fork 0
/
lircrc
310 lines (307 loc) · 6.54 KB
/
lircrc
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
# Vince Loschiavo
# vloradio project - infrared remote control
#
# For current versions of Raspberry Pi and raspbian, you'll need to add this to your /boot/config.txt. This will insert the appropriate kernel modules and settings
# # Add support for LIRC over GPIO (BCM) Pins
# dtoverlay=lirc-rpi,gpio_in_pin=27,gpio_in_pull=up
begin POWER
begin
# Stop all the things!
button = KEY_POWER
prog = irexec
config = sudo -iu \\#1000 /home/vloschiavo/src/vloradio/buttonhandler.sh poweroff
flags = quit mode
end
begin
# Mode button - start pianobar/patiobar
button = BTN_MODE
prog = irexec
config = sudo -iu \\#1000 /home/vloschiavo/src/vloradio/buttonhandler.sh pbstart
flags = quit mode
end
begin
# Setup button - stop pianobar/patiobar
button = KEY_SETUP
prog = irexec
config = sudo -iu \\#1000 /home/vloschiavo/src/vloradio/buttonhandler.sh pbstop
flags = quit mode
end
begin
# PBC button - exit from power mode
prog = irexec
config = sudo -iu \\#1000 /home/vloschiavo/src/vloradio/DisplayLCDMessage.py "Leaving mode:" "Power Control"
button = KEY_MP3
flags = quit mode
end
end POWER
begin
# Mute the soundcard toggle and update screen
button = KEY_MUTE
prog = irexec
config = sudo -iu \\#1000 /home/vloschiavo/src/vloradio/buttonhandler.sh 18
flags = quit
end
begin
# Redraw the now playing screen
button = KEY_DISPLAYTOGGLE
prog = irexec
config = /home/vloschiavo/src/vloradio/ParseAndWrite.py
flags = quit
end
#begin
# KEY_GOTO
#button = KEY_GOTO
#prog = irexec
#config =
#flags = quit
#end
#begin
# Subtitle
#button = KEY_SUBTITLE
#prog = irexec
#config =
#flags = quit
#end
begin
button = KEY_AUDIO
prog = irexec
config = sudo -iu \\#1000 /home/vloschiavo/src/vloradio/buttonhandler.sh audio
flags = quit
end
begin
# (-- button) Ban the current song
button = KEY_MINUS
prog = irexec
config = sudo -iu \\#1000 /home/vloschiavo/src/vloradio/buttonhandler.sh ban
flags = quit
end
#begin
# Return button = back
#button = BTN_BACK
#prog = irexec
#config =
#flags = quit
#end
#begin
# Unassigned
#button = KEY_SETUP
#prog = irexec
#config = echo "Starting pianobar now. / pbstart"
#flags = quit mode
#end
begin
# Using the repeat option: If you hold the remote button, it will run the command after every 2nd receive
# Sends Volume control information to pianobar
button = KEY_VOLUMEDOWN
prog = irexec
config = echo -n '((' >> /var/tmp/ctl
repeat = 2
flags = quit
end
begin
# Using the repeat option: If you hold the remote button, it will run the command after every 2nd receive
# Sends Volume control information to pianobar
button = KEY_VOLUMEUP
prog = irexec
config = echo -n '))' >> /var/tmp/ctl
repeat = 2
flags = quit
end
#begin
# Channel + Button
#button = KEY_CHANNELUP
#prog = irexec
#config =
#flags = quit
#end
begin
# (Input) button
button = KEY_AUX
prog = irexec
config = sudo -iu \\#1000 sudo -iu \\#1000 /home/vloschiavo/src/vloradio/buttonhandler.sh INPUT
flags = quit
end
begin
# Menu button
button = KEY_MENU
prog = irexec
config = sudo -iu \\#1000 /home/vloschiavo/src/vloradio/menu.sh MENU
flags = quit
end
#begin
# < button
#button = BTN_LEFT
#prog = irexec
#config =
#flags = quit
#end
#begin
# Enter button
#button = KEY_ENTER
#prog = irexec
#config =
#flags = quit
#end
#begin
# > button
#button = BTN_RIGHT
#prog = irexec
#config =
#flags = quit
#end
#begin
# Slow button
#button = KEY_SLOW
#prog = irexec
#config =
#flags = quit
#end
#begin
# Stop button
#button = KEY_STOP
#prog = irexec
#config =
#flags = quit
#end
#begin
# Channel - button
#button = KEY_CHANNELDOWN
#prog = irexec
#config =
#flags = quit
#end
begin
# Play pause and update screen
button = KEY_PLAYPAUSE
prog = irexec
config = sudo -iu \\#1000 /home/vloschiavo/src/vloradio/buttonhandler.sh S
config = sudo -iu \\#1000 /home/vloschiavo/src/vloradio/buttonhandler.sh P
flags = quit
end
begin
# Like the current song
button = KEY_MEDIA_REPEAT
prog = irexec
config = sudo -iu \\#1000 /home/vloschiavo/src/vloradio/buttonhandler.sh plus
flags = quit
end
begin
# Display Temp/Humidity
button = KEY_AB
prog = irexec
config = /home/vloschiavo/src/vloradio/buttonhandler.sh 12 &
flags = quit
end
#begin
# << button
#button = KEY_REWIND
#prog = irexec
#config =
#flags = quit
#end
begin
# >> button (Tired of song - pianobar to skip for 30 days)
button = KEY_FASTFORWARD
prog = irexec
config = sudo -iu \\#1000 /home/vloschiavo/src/vloradio/buttonhandler.sh t
flags = quit
end
begin
# PBC button - Go into Power control Mode
button = KEY_MP3
prog = irexec
config = sudo -iu \\#1000 /home/vloschiavo/src/vloradio/DisplayLCDMessage.py "Entering mode:" "Power Control"
mode = POWER
flags = quit
end
#begin
# Zoom button
#button = KEY_ZOOM
#prog = irexec
#config =
#flags = quit
#end
#begin
# |<< Button
#button = KEY_PREVIOUSSONG
#prog = irexec
#config =
#flags = quit
#end
begin
# >>| Button (skip to next song in pianobar)
button = KEY_NEXTSONG
prog = irexec
config = sudo -iu \\#1000 /home/vloschiavo/src/vloradio/buttonhandler.sh n
flags = quit
end
begin
# Favorite station ZZ Top
button = BTN_0
prog = irexec
config = /home/vloschiavo/src/vloradio/buttonhandler.sh 100 &
flags = quit
end
begin
# Favorite station Stevie Ray Vaughan
button = BTN_1
prog = irexec
config = /home/vloschiavo/src/vloradio/buttonhandler.sh 101 &
flags = quit
end
begin
# Favorite station Jazz Radio
button = BTN_2
prog = irexec
config = /home/vloschiavo/src/vloradio/buttonhandler.sh 102 &
flags = quit
end
begin
# Favorite station Van Halen
button = BTN_3
prog = irexec
config = /home/vloschiavo/src/vloradio/buttonhandler.sh 103 &
flags = quit
end
begin
# Favorite station Louisiana Blues
button = BTN_4
prog = irexec
config = /home/vloschiavo/src/vloradio/buttonhandler.sh 104 &
flags = quit
end
begin
# Favorite station John Coltrane
button = BTN_5
prog = irexec
config = /home/vloschiavo/src/vloradio/buttonhandler.sh 105 &
flags = quit
end
begin
# Favorite station Soundgarden Radio
button = BTN_6
prog = irexec
config = /home/vloschiavo/src/vloradio/buttonhandler.sh 106 &
flags = quit
end
begin
# Favorite station Rock Guitar
button = BTN_7
prog = irexec
config = /home/vloschiavo/src/vloradio/buttonhandler.sh 107 &
flags = quit
end
begin
# Favorite station Miles Davis
button = BTN_8
prog = irexec
config = /home/vloschiavo/src/vloradio/buttonhandler.sh 108 &
flags = quit
end
begin
# Favorite station Master Of Puppets Radio
button = BTN_9
prog = irexec
config = /home/vloschiavo/src/vloradio/buttonhandler.sh 109 &
flags = quit
end