mirror of
https://github.com/Schrolli91/BOSWatch.git
synced 2025-12-06 07:42:03 +01:00
23 lines
384 B
Python
23 lines
384 B
Python
|
|
#!/usr/bin/python
|
||
|
|
# -*- coding: UTF-8 -*-
|
||
|
|
#
|
||
|
|
|
||
|
|
# control-params (Boolean)
|
||
|
|
running = True
|
||
|
|
showDisplay = False
|
||
|
|
abort = False
|
||
|
|
|
||
|
|
# color of display-boarder
|
||
|
|
screenBackground = ""
|
||
|
|
|
||
|
|
# data-structure (Dict)
|
||
|
|
data = {}
|
||
|
|
|
||
|
|
# last alarm shown (Timestamp)
|
||
|
|
lastAlarm = 0
|
||
|
|
|
||
|
|
# enable display until (Timestamp)
|
||
|
|
enableDisplayUntil = 0
|
||
|
|
|
||
|
|
# configparser (Configparser)
|
||
|
|
config = 0
|