BOSWatch/exampleAddOns/alarmMonitorRPi/globalData.py
Bastian Schroll f8fcda94b6 rename globals to globalVars
to prevent to redifine an builtin function
2016-10-03 11:56:27 +02:00

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