-
Notifications
You must be signed in to change notification settings - Fork 0
/
alarmdisplay-sample.conf
478 lines (384 loc) · 8.38 KB
/
alarmdisplay-sample.conf
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
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
;-----------------------------------------------------------------------------
;
; vim: syntax=dosini
;
; Alarmdisplay sample configuration file
;
; Copyright (C) 2018 Florian Pose
;
; This file is part of Alarm Display.
;
; Alarm Display 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
; (at your option) any later version.
;
; Alarm Display 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
; Alarm Display. If not, see <http://www.gnu.org/licenses/>.
;
;-----------------------------------------------------------------------------
[display]
;
; Title displayed in idle mode
; Default: Alarmdisplay
;
;title = Alarmdisplay
;
; Image search path
; Used by home_marker, destination_marker and logo.
; Default: images (relative to current directory)
;
;image_dir = images
;
; Logo to display
; Specify a path relative to image_dir.
; Default: empty (no logo)
;
;logo =
;
; Hide city display, if it matches this one
; Default: empty (always display city)
;
;home_town =
;
; Idle timeout [minutes]
; After an alarm, the screen goes back to idle display.
; Default: 30
;
;idle_timeout = 30
;
; Screen switch-off timeout [minutes]
; Default: 0 (never switch off)
;
;screen_timeout = 0
;
; Log path
; Default: /var/log/alarmdisplay.log
;
;log_path = /var/log/alarmdisplay.log
;-----------------------------------------------------------------------------
[sound]
;
; Alarm sound
; Default: None
;
;alarm =
;
; Sound delay [s]
; Default: 20
;
;delay = 20
;
; Text-to-speech delay [s]
; Default: 30
;
;tts_delay = 30
;
; Text-to-speech repetitions
; Default: 10
;
;tts_repetitions = 10
;
; Text-to-speech pad file
; Will be prepended and appended to the generated TTS file before playing
; Default: (none)
;
;tts_pad_file =
;
; Status sound
; Default: None
;
;status =
;-----------------------------------------------------------------------------
[maps]
;
; Directory with map tiles
; Default: tiles
;
;tiles_dir = tiles
;
; Marker for the home / start point of the route
; Specify a path relative to image_dir.
; The marker will be aligned at the center of the bottom line.
; Default: marker_home.png
;
;home_marker = marker_home.png
;
; Marker for the destination / end point of the route
; Specify a path relative to image_dir.
; The marker will be aligned at the center of the bottom line.
; Default: marker_dest.png
;
;destination_marker = marker_dest.png
;
; Color of the route line
; For accepted formats see http://doc.qt.io/qt-5/qcolor.html#setNamedColor
; Default: #400000c0
;
;route_color = #400000c0
;-----------------------------------------------------------------------------
[destination_map]
;
; Fixed zoom level for the destination map
; Larger values will show more details.
; see http://wiki.openstreetmap.org/wiki/Zoom_levels
; Default: 17
;
;zoom = 17
;
; Width of the route line [px]
; Default: 7
;
;route_width = 7
;-----------------------------------------------------------------------------
[route_map]
;
; Width of the route line [px]
; Default: 10
;
;route_width = 10
;-----------------------------------------------------------------------------
[route]
;
; Routing start point [deg]
; Default: empty (no route display)
;
;home_longitude =
;home_latitude =
;
; Maximum route map zoom level
; Default: 17
;
;max_zoom = 17
;
; OpenRouteService API Key
; see https://go.openrouteservice.org/documentation
; Default: empty (no route query)
;
;ors_api_key =
;-----------------------------------------------------------------------------
[report]
;
; Template path
; Default: 'report' in current directory
;
;template_dir = report
;
; Output path
; Default is current directory.
;
;output_dir = .
;
; Logo image (without file extension)
; Default: empty (no logo)
;
;logo =
;
; Print alarm report
; Default: False
;
;print = False
;
; Printer (default printer if empty)
;
;printer =
;
; Print options
; each passed with '-o' switch to 'lpr' command.
; Default: empty
;
;print_options =
;
; Number of copies to print
; Default is 1.
;
;copies = 1
;
; Wakeup document
; printed before alarm processing to wakeup sleeping printer
; Default: empty (no wakeup document)
;
;wakeup_document =
;
; Report timeout [s]
; Generate report at latest after this time, if not all alarm sources were
; received. Default is 60.
;
;timeout = 60
;-----------------------------------------------------------------------------
[pager]
;
; Serial port to connect to.
; Set empty to disable pager.
; Default: /dev/ttyUSB0
;
;device = /dev/ttyUSB0
;
; Do not use pager timestamp, but use host clock instead
; Default: False
;
;use_host_clock = False
;
; Time zone of timestamps in pager alarms
; Default: Europe/Berlin
;
;time_zone = Europe/Berlin
;-----------------------------------------------------------------------------
[email]
;
; Time zone of timestamps in eMail alarms
; Default: Europe/Berlin
;
;time_zone = Europe/Berlin
;
; IMAP4 host (SSL)
; Default: empty (no IMAP access)
;
;imap_host =
;
; IMAP4 user name
; Default: empty (no IMAP access)
;
;imap_user =
;
; IMAP4 password
; Default: empty (no IMAP access)
;
;imap_pass =
;
; Path to IMAP4 credentials file
; File must contain two lines, interpreted as username and password.
; If both imap_user/imap_pass and imap_cred are specified, explicit
; imap_user/imap_pass override imap_cred.
; Default: empty (no credentials file)
;
;imap_cred =
;-----------------------------------------------------------------------------
[websocket]
;
; Websocket URL
; Default: empty (no websocket connection)
;
;url =
;
; User for websocket authentication
; Default: (Hostname)
;
;user =
;
; Websocket authentication token
; Default: empty (no authentication)
;
;auth_token =
;-----------------------------------------------------------------------------
[status]
;
; Status display address
; Default: none
;
;address0 = FW KLV05 LF10 1
;
; Status display name
; Applies for the adress with the same number.
; Default: (address, see above)
;
;name0 = 5-LF10-1
;
; Status display image
; Applies for the adress with the same number.
; Default: none
;
;image0 =
;-----------------------------------------------------------------------------
[db]
;
; Path to store alarms
; Default: empty (do not store alarms)
;
;path =
;-----------------------------------------------------------------------------
[forward]
;
; Host name or adress to forward alarms to
; Multiple hosts can be declared with host1, host2, ...
; Default: empty (do not forward alarms)
;
;host0 =
;-----------------------------------------------------------------------------
[idle]
;
; Time period to cycle though historical alarms
; Default: 10
;
;history_period = 10
;
; Show map with weather warnings
; Default: True
;
;weather = True
;
; Show forest fire warning map
; Default: True
;
;forest = True
;
; Water heights URL
; Example: https://www.elwis.de/DE/dynamisch/gewaesserkunde/wasserstaende/wasserstaendeUebersichtGrafik.png.php?pegelId=9598e4cb-0849-401e-bba0-689234b27644&dfh=0
; Default: empty (no display)
;
;water_url =
;
; CalDAV Calendar URL
; Multiple instances are allowed (calendar0, calendar1, calendar2...)
;
;calendar0 =
;
; ICS Calendar URL
; Multiple instances are allowed (ics0, ics1, ics2...)
;
;ics0 =
;-----------------------------------------------------------------------------
[presence]
;
; Switch screen on at given time
;
; Format: DDD HH:MM
; DDD: Locale-dependent abbreviated day-of-week (Mo, Di, ...)
; HH: Hour (24 hour-format)
; MM: Minute
; Example: Do 19:30
; Default: empty
; Multiple instances are allowed (on0, on1, on2...)
;
;on0 = Do 19:30
;
; Switch screen off at given time
; See above.
;
;off0 = Do 23:30
;-----------------------------------------------------------------------------
[notify]
;
; Server URL to notify on events
;
;url =
;-----------------------------------------------------------------------------
[gpio]
;
; GPIO channel (board numbering) to switch on alarm
; Channel/Pin 11 means GPIO 17
;
;channel = -1
;
; Duration that the output is switched on
;
;on_time = 1
; Delay before the output is switched on [s]
;
;on_delay = 0
;-----------------------------------------------------------------------------