This commit is contained in:
SpudGunMan
2024-08-12 23:49:50 -07:00
parent ec14e07513
commit f1ef5fa787
3 changed files with 8 additions and 5 deletions
+3 -1
View File
@@ -104,7 +104,9 @@ Sentry Bot detects anyone comeing close to the bot-node
```
# detect anyone close to the bot
SentryEnabled = True
# holdoff time multiplied by minutes(20) of the watchdog
# radius in meters to detect someone close to the bot
SentryRadius = 100
# holdoff time multiplied by seconds(20) of the watchdog
SentryChannel = 9
# channel to send a message to when the watchdog is triggered
SentryHoldoff = 2
+4 -3
View File
@@ -40,16 +40,17 @@ StoreLimit = 3
# 24 hour clock
zuluTime = True
# wait time for URL requests
URL_TIMEOUT = 10
urlTimeout = 10
# logging to file of the non Bot messages
LogMessagesToFile = False
# detect anyone close to the bot
[sentry]
# detect anyone close to the bot
SentryEnabled = True
# radius in meters to detect someone close to the bot
SentryRadius = 100
# holdoff time multiplied by minutes(20) of the watchdog
# holdoff time multiplied by seconds(20) of the watchdog
SentryChannel = 9
# channel to send a message to when the watchdog is triggered
SentryHoldoff = 2
+1 -1
View File
@@ -82,7 +82,7 @@ try:
publicChannel = config['general'].getint('defaultChannel', 0) # the meshtastic public channel
zuluTime = config['general'].getboolean('zuluTime', False) # aka 24 hour time
log_messages_to_file = config['general'].getboolean('LogMessagesToFile', True) # default True
urlTimeoutSeconds = config['general'].getint('URL_TIMEOUT', 10) # default 10 seconds
urlTimeoutSeconds = config['general'].getint('urlTimeout', 10) # default 10 seconds
store_forward_enabled = config['general'].getboolean('StoreForward', True) # default False
storeFlimit = config['general'].getint('StoreLimit', 3) # default 3 messages for S&F
welcome_message = config['general'].get(f'welcome_message', WELCOME_MSG)