Skip to content

Commit

Permalink
Merge pull request #25 from RAnders00/patch-1
Browse files Browse the repository at this point in the history
Fix incorrect responses from comReadByte
  • Loading branch information
bremme committed Aug 10, 2018
2 parents 13d76b3 + 4646d9f commit 5af549e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SevenSegmentTM1637.cpp
Expand Up @@ -427,7 +427,7 @@ uint8_t SevenSegmentTM1637::comReadByte(void) const {
digitalHigh(_pinClk);

if ( isHigh(_pinDIO) ) {
readKey = readKey | B1000000;
readKey = readKey | B10000000;
};

delayMicroseconds(30);
Expand Down

0 comments on commit 5af549e

Please sign in to comment.