Skip to content

Instantly share code, notes, and snippets.

@dlareau
Last active January 19, 2019 01:21
Show Gist options
  • Save dlareau/3981b20dd411e19160fe8a717a8ed2fa to your computer and use it in GitHub Desktop.
Save dlareau/3981b20dd411e19160fe8a717a8ed2fa to your computer and use it in GitHub Desktop.
Sample prints
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