Skip to content

Commit c4a15a5

Browse files
Copilotdorkmo
andcommitted
Fix duplicate 'now' variable declaration in loop() function
Co-authored-by: dorkmo <[email protected]>
1 parent ba699b1 commit c4a15a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

TankAlarm-112025-Server-BluesOpta/TankAlarm-112025-Server-BluesOpta.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2651,7 +2651,7 @@ void loop() {
26512651

26522652
handleWebRequests();
26532653

2654-
unsigned long now = millis();
2654+
now = millis();
26552655
if (now - gLastPollMillis > 5000UL) {
26562656
gLastPollMillis = now;
26572657
pollNotecard();

0 commit comments

Comments
 (0)