BOSWatch/exampleAddOns/alarmMonitorRPi/globalData.py

35 lines
529 B
Python
Raw Normal View History

#!/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