Skip to content

Commit

Permalink
Fixed gratuitous end-of-line output statements on debug console.
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-buschbeck committed Jan 6, 2014
1 parent c6fa150 commit 45cfe00
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Mystbox.ino
Original file line number Diff line number Diff line change
Expand Up @@ -528,7 +528,6 @@ void loop()
}

Serial.println(F(" micros"));
Serial.println();

switch (target) {
case 's': readScanner (position); break;
Expand All @@ -540,7 +539,7 @@ void loop()
Serial.print(F("cannot set position "));
Serial.print(position);
Serial.print(F(" to invalid "));
Serial.println(microsServoNew);
Serial.print(microsServoNew);
Serial.println(F(" micros"));
}
else {
Expand Down

0 comments on commit 45cfe00

Please sign in to comment.