This commit is contained in:
SpudGunMan
2025-09-10 19:03:44 -07:00
parent dcabfc0f50
commit c3221d64a8
3 changed files with 3 additions and 2 deletions
+1
View File
@@ -267,6 +267,7 @@ SentryHoldoff = 2 # channel to send a message to when the watchdog is triggered
sentryIgnoreList = # list of ignored nodes numbers ex: 2813308004,4258675309
highFlyingAlert = True # HighFlying Node alert
highFlyingAlertAltitude = 2000 # Altitude in meters to trigger the alert
highflyOpenskynetwork = True # check with OpenSkyNetwork if highfly detected for aircraft
```
### E-Mail / SMS Settings
+1 -1
View File
@@ -120,7 +120,7 @@ highFlyingAlert = True
# Altitude in meters to trigger the alert
highFlyingAlertAltitude = 2000
# check with OpenSkyNetwork if highfly detected for aircraft
highfly_openskynetwork = True
highflyOpenskynetwork = True
# Channel to send Alert when the high flying node is detected
highFlyingAlertInterface = 1
highFlyingAlertChannel = 2
+1 -1
View File
@@ -244,7 +244,7 @@ try:
highfly_channel = config['sentry'].getint('highFlyingAlertChannel', 2) # default 2
highfly_interface = config['sentry'].getint('highFlyingAlertInterface', 1) # default 1
highfly_ignoreList = config['sentry'].get('highFlyingIgnoreList', '').split(',') # default empty
highfly_check_openskynetwork = config['sentry'].getboolean('highfly_openskynetwork', True) # default True check with OpenSkyNetwork if highfly detected
highfly_check_openskynetwork = config['sentry'].getboolean('highflyOpenskynetwork', True) # default True check with OpenSkyNetwork if highfly detected
# location
location_enabled = config['location'].getboolean('enabled', True)