Skip to content

Commit 1ea8503

Browse files
authored
Merge pull request #98 from SenaxInc/copilot/fix-arduino-compilation-error-again
Fix duplicate variable declaration in loop() causing compilation failure
2 parents ce9ed8d + c4a15a5 commit 1ea8503

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)