Skip to content

Commit

Permalink
Switched back to println for console readings.
Browse files Browse the repository at this point in the history
  • Loading branch information
gabesawhney committed Jul 19, 2024
1 parent c69f273 commit 644c4cb
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions noisemeter-device/noisemeter-device.ino
Original file line number Diff line number Diff line change
Expand Up @@ -267,8 +267,7 @@ void printReadingToConsole(double reading) {
if (currentCount > 1) {
output += " [+" + String(currentCount - 1) + " more]";
}
SERIAL.print("\r \r");
SERIAL.print(output);
SERIAL.println(output);
}

std::optional<const char *> saveNetworkCreds(String ssid, String psk, String email)
Expand Down

0 comments on commit 644c4cb

Please sign in to comment.