Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
RobTillaart committed Jan 6, 2024
1 parent e7b4b7d commit 7541dec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rotaryDecoder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ bool rotaryDecoder::write1(uint8_t pin, uint8_t value)
uint8_t tmp = _read8();
if (value == LOW) tmp &= ~mask;
else tmp |= mask;
bool _write8(tmp);
return _write8(tmp);
}


Expand Down

0 comments on commit 7541dec

Please sign in to comment.