Skip to content

Commit ad5e6b1

Browse files
Copilotdorkmo
andcommitted
Change relay polling interval to 10 minutes
Co-authored-by: dorkmo <[email protected]>
1 parent ad137cf commit ad5e6b1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

TankAlarm-112025-Client-BluesOpta/RELAY_CONTROL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ Commands are sent via Blues Notecard to `device:<clientUID>:relay.qi`:
132132

133133
### Client Polling
134134

135-
- Client polls `relay.qi` every 1 hour
135+
- Client polls `relay.qi` every 10 minutes
136136
- Commands are deleted after processing
137137
- Invalid commands are logged and ignored
138138

TankAlarm-112025-Client-BluesOpta/TankAlarm-112025-Client-BluesOpta.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,7 @@ void loop() {
366366
pollForConfigUpdates();
367367
}
368368

369-
if (now - gLastRelayCheckMillis >= 3600000UL) { // Check every 1 hour
369+
if (now - gLastRelayCheckMillis >= 600000UL) { // Check every 10 minutes
370370
gLastRelayCheckMillis = now;
371371
pollForRelayCommands();
372372
}

0 commit comments

Comments
 (0)