Skip to content

Commit ac6f595

Browse files
committed
fix trailing bracket
1 parent 12a6656 commit ac6f595

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/analogIO/Wippersnapper_AnalogIO.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -416,9 +416,9 @@ void Wippersnapper_AnalogIO::update() {
416416

417417
// get the threshold values for previous pin value
418418
uint16_t _pinValThreshHi =
419-
_analog_input_pins[i].prvPinVal + CURRENT_HYSTERISIS);
419+
_analog_input_pins[i].prvPinVal + CURRENT_HYSTERISIS;
420420
uint16_t _pinValThreshLow =
421-
_analog_input_pins[i].prvPinVal - CURRENT_HYSTERISIS);
421+
_analog_input_pins[i].prvPinVal - CURRENT_HYSTERISIS;
422422

423423
if (_analog_input_pins[i].prvPeriod == 0 || pinValRaw > _pinValThreshHi || pinValRaw < _pinValThreshLow) {
424424
// Perform voltage conversion if we need to

0 commit comments

Comments
 (0)