Revert "argument list to dict"

This reverts commit 70a45f8de7.
This commit is contained in:
Schrolli 2015-05-18 15:25:22 +02:00
commit 9e5ef082e7
4 changed files with 95 additions and 16 deletions

View file

@ -2,18 +2,18 @@
Typ = FMS, ZVEI oder POC
Frequenz = Frequenz in Hz
daten[] als Python Dictionary
daten[] als Python List
ZVEI:
- zvei
- ZVEI code
FMS:
- fms
- status
- direction
- tki
- FMS Kennung
- Status
- Richtung
- TKI
POCSAG:
- ric
- sub_ric
- text
- RIC
- Sub RIC
- Text

View file

@ -3,7 +3,7 @@ import logging
def run(typ,freq,data):
logging.debug("Throw Template Plugin")
try:
logging.info("ZVEI: %s wurde auf %s empfangen!", data["zvei"],freq)
logging.info("ZVEI: %s wurde auf %s empfangen!", data[0],freq)
logging.debug("try 5/0")
test = 5/0
except: