mirror of
https://github.com/Schrolli91/BOSWatch.git
synced 2025-12-06 07:42:03 +01:00
you have the possibility to set a discription for every FMS, ZWEI oder RIC address descriptions will be imported via csv-files if enabled BOSWatch will look up the description and could be used in the plugins eMail-plugin extended wildcards to use describtion %DESC%
41 lines
660 B
Plaintext
41 lines
660 B
Plaintext
Handover to Plugin:
|
|
typ = [FMS|ZVEI|POC]
|
|
freq = [Freq in Hz]
|
|
data = {"KEY1":"VALUE1","KEY2":"VALUE2"}
|
|
|
|
|
|
The following informations are included in the var "data".
|
|
They can be used by their Index Names: data['OPTION']
|
|
|
|
ZVEI:
|
|
- zvei
|
|
- description
|
|
|
|
FMS:
|
|
- fms
|
|
- status
|
|
- direction
|
|
- directionText
|
|
- tsi
|
|
- description
|
|
|
|
POCSAG:
|
|
- ric
|
|
- function
|
|
- functionChar
|
|
- msg
|
|
- bitrate
|
|
- description
|
|
|
|
|
|
Global Objects:
|
|
|
|
1.)
|
|
import logging # Global logger
|
|
Message into Log: logging.LOGLEVEL("MESSAGE")
|
|
Loglevel: debug|info|warning|error|exception|critical
|
|
|
|
2.)
|
|
import globals # Global variables
|
|
reads Data from the config.ini
|
|
VALUE = globals.config.get("SECTION", "OPTION") |