mirror of
https://codeberg.org/mclemens/pyBMNotify.git
synced 2024-11-10 15:56:16 -05:00
16183700c0
added config file
11 lines
468 B
Python
11 lines
468 B
Python
#!/usr/bin/env python
|
|
|
|
# adapt the following variables to your needs
|
|
talkgroups = [91, 262] # Talkgroups to monitor
|
|
callsigns = ["N0CALL", "N0C4LL"] # Callsigns to monitor
|
|
min_duration = 2 # Min. duration of a QSO to qualify for a push notification
|
|
min_silence = 300 # Min. time in seconds after the last QSO before a new push notification will be send
|
|
# Pushover configuration
|
|
pushover_token = "" # Your Pushover API token
|
|
pushover_user = "" # Your Pushover user key
|