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