Skip to content

Commit

Permalink
final format?
Browse files Browse the repository at this point in the history
  • Loading branch information
tyeth committed Oct 15, 2024
1 parent ffcd79d commit 6129e63
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/analogIO/Wippersnapper_AnalogIO.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,8 @@ void Wippersnapper_AnalogIO::update() {
else if (_analog_input_pins[i].period == 0L) {

// not first run and timer not expired, skip
if (_analog_input_pins[i].prvPeriod != 0L && !timerExpired(millis(), _analog_input_pins[i], 500)) {
if (_analog_input_pins[i].prvPeriod != 0L &&
!timerExpired(millis(), _analog_input_pins[i], 500)) {
continue;
}

Expand Down

0 comments on commit 6129e63

Please sign in to comment.