Last active
January 19, 2019 01:21
-
-
Save dlareau/3981b20dd411e19160fe8a717a8ed2fa to your computer and use it in GitHub Desktop.
Sample prints
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Serial.print("words "); | |
Serial.print(5) | |
Serial.println(" More words") | |
int8_t | |
uint8_t | |
unsigned int i = -5; | |
Serial.printf("words %d more words\n", i); | |
Serial.printf("words %02d more words\n", i); | |
001 | |
100 | |
1000 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment