mirror of
https://github.com/Schrolli91/BOSWatch.git
synced 2025-12-06 07:42:03 +01:00
36 lines
434 B
Python
36 lines
434 B
Python
#!/usr/bin/python
|
|
# -*- coding: cp1252 -*-
|
|
|
|
"""
|
|
Global variables
|
|
|
|
@author: Jens Herrmann
|
|
@author: Bastian Schroll
|
|
"""
|
|
|
|
# Global variables
|
|
config = 0
|
|
script_path = ""
|
|
|
|
# double alarm
|
|
fms_id_old = 0
|
|
fms_time_old = 0
|
|
|
|
zvei_id_old = 0
|
|
zvei_time_old = 0
|
|
|
|
poc_id_old = 0
|
|
poc_time_old = 0
|
|
|
|
# pluginLoader
|
|
pluginList = {}
|
|
|
|
# filter
|
|
filterList = []
|
|
|
|
# idDescribing
|
|
fmsDescribtionList = {}
|
|
zveiDescribtionList = {}
|
|
ricDescribtionList = {}
|
|
|