Skip to content

Commit 9071657

Browse files
authored
Merge pull request #39 from facelessloser/master
removed Serial.println so it can be using with attiny85
2 parents afea18e + 010df5a commit 9071657

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/SevenSegmentExtended.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ void SevenSegmentExtended::printDualCounter(int8_t leftCounter, int8_t rightCoun
5555
rightCounter = (rightCounter > max)?max:rightCounter;
5656
rightCounter = (rightCounter < min)?min:rightCounter;
5757

58-
Serial.println(leftCounter);
59-
Serial.println(rightCounter);
58+
// Serial.println(leftCounter);
59+
// Serial.println(rightCounter);
6060

6161

6262
bool colonWasOn = getColonOn(); // get current state

0 commit comments

Comments
 (0)