From 98b50110a083b3569300b9f25426b3bfd340e0df Mon Sep 17 00:00:00 2001 From: Bastian Schroll Date: Sun, 5 Mar 2017 20:21:16 +0100 Subject: [PATCH] change from ZVEI2 to ZVEI1 --- boswatch.py | 2 +- includes/decoder.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/boswatch.py b/boswatch.py index 6b644f5..e8b7b3a 100755 --- a/boswatch.py +++ b/boswatch.py @@ -178,7 +178,7 @@ try: demodulation += "-a FMSFSK " logging.debug(" - Demod: FMS") if "ZVEI" in args.demod: - demodulation += "-a ZVEI2 " + demodulation += "-a ZVEI1 " logging.debug(" - Demod: ZVEI") if "POC512" in args.demod: demodulation += "-a POCSAG512 " diff --git a/includes/decoder.py b/includes/decoder.py index 26c8ba4..9c979d3 100644 --- a/includes/decoder.py +++ b/includes/decoder.py @@ -33,7 +33,7 @@ def decode(freq, decoded): # ZVEI Decoder Section # check ZVEI: -> validate -> check double alarm -> log - elif "ZVEI2:" in decoded: + elif "ZVEI1:" in decoded: logging.debug("received ZVEI") from includes.decoders import zvei zvei.decode(freq, decoded)