Update radio.py

This commit is contained in:
SpudGunMan
2024-07-31 17:59:45 -07:00
parent 9f983547c7
commit dd4443a7a1
+2 -2
View File
@@ -8,9 +8,9 @@ import asyncio
from modules.settings import *
SIGNAL_DETECTION_THRESHOLD = -10 # dBm
SIGNAL_HOLD_TIME = 15 # seconds to hold on to signal before checking again
SIGNAL_HOLD_TIME = 10 # seconds to hold on to signal before checking again
SIGNAL_COOLDOWN = 5 # seconds to wait between signal checks
SIGNAL_CYCLE_LIMIT = 6 # multiply by SIGNAL_COOLDOWN to get total time to wait before resetting signal strength
SIGNAL_CYCLE_LIMIT = 4 # multiply by SIGNAL_COOLDOWN to get total time to wait before resetting signal strength
ERROR_FETCHING_DATA = "error fetching data"