Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
matthias-bs committed Jul 23, 2023
1 parent 2465d67 commit 266dd6d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ void loop()
// Clear all sensor data
weatherSensor.clearSlots();

idx = (idx == 4) ? 0 : idx++;
idx = (idx == 4) ? 0 : idx+1;

// Tries to receive radio message (non-blocking) and to decode it.
// Timeout occurs after a small multiple of expected time-on-air.
Expand Down

0 comments on commit 266dd6d

Please sign in to comment.