Skip to content

Commit

Permalink
Deleted degree symbol in temperature display
Browse files Browse the repository at this point in the history
The degree symbol in the temperature display (C°) did not always print properly.  There was no good substitute, so I deleted it.
  • Loading branch information
budryerson authored Sep 10, 2021
1 parent 1685000 commit 181c00c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion example/TFMP_example.ino
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ void loop()
{
printf( "Dist:%04icm ", tfDist); // display distance,
printf( "Flux:%05i ", tfFlux); // display signal strength/quality,
printf( "Temp:%2i\°C", tfTemp); // display temperature,
printf( "Temp:%2i%s", tfTemp, "C"); // display temperature,
printf( "\r\n"); // end-of-line.
}
else // If the command fails...
Expand Down

0 comments on commit 181c00c

Please sign in to comment.