a little bit documentation

This commit is contained in:
JHCD 2015-05-31 12:40:43 +02:00
parent 1ee27afbf0
commit 0a621b283a
10 changed files with 97 additions and 20 deletions

View file

@ -15,8 +15,11 @@ import re #Regex for validation
from includes import globals # Global variables
#FMS Decoder Function
#validate -> check double alarm -> log
##
#
# FMS Decoder Function
# validate -> check double alarm -> log
#
def decode(freq, decoded):
"""
Export FMS Information from Multimon-NG RAW String and call alarmHandler.processAlarm()

View file

@ -5,7 +5,7 @@
POCSAG Decoder
@author: Bastian Schroll
@author: Jens Hermann
@author: Jens Herrmann
@requires: Configuration has to be set in the config.ini
"""
@ -16,7 +16,10 @@ import re #Regex for validation
from includes import globals # Global variables
##
#
# Simple Filter
#
def isAllowed(poc_id):
"""
Simple Filter Functions (Allowed, Denied and Range)
@ -51,9 +54,11 @@ def isAllowed(poc_id):
return False
return True
#POCSAG Decoder Function
#validate -> check double alarm -> log
##
#
# POCSAG Decoder Function
# validate -> check double alarm -> log
#
def decode(freq, decoded):
"""
Export POCSAG Information from Multimon-NG RAW String and call alarmHandler.processAlarm()

View file

@ -15,8 +15,11 @@ import re #Regex for validation
from includes import globals # Global variables
#ZVEI Decoder Function
#validate -> check double alarm -> log
##
#
# ZVEI Decoder Function
# validate -> check double alarm -> log
#
def decode(freq, decoded):
"""
Export ZVEI Information from Multimon-NG RAW String and call alarmHandler.processAlarm()

View file

@ -4,7 +4,7 @@
"""
Global variables
@author: Jens Hermann
@author: Jens Herrmann
@author: Bastian Schroll
"""

View file

@ -5,7 +5,7 @@
Shows the Header in Shell if quiet Mode is not active
@author: Bastian Schroll
@author: Jens Hermann
@author: Jens Herrmann
@requires: none
"""