perf: reduce poll interval to 10 seconds

This commit is contained in:
2025-07-31 18:34:51 -06:00
committed by Tanner Collin (aider)
parent 2fd432f516
commit e9b4fbc757

View File

@@ -22,7 +22,7 @@ if not BLUEIRIS_KEY:
CAMERA_URL = "http://cameras.dns.t0.vc/image/SE-S?&w=9999&decode=1"
MODEL_PATH = 'garage_door_cnn.pth'
CLASS_NAMES = ['closed', 'open'] # From training, sorted alphabetically
POLL_INTERVAL_SECONDS = 30
POLL_INTERVAL_SECONDS = 10
REQUEST_TIMEOUT_SECONDS = 5
# --- Model Inference ---