Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork130
Open
Labels
Description
I wrote a couple of lines of helper code to allow for easy printing. If anyone is interested, I could incorporate it inStream.h
and open a pull request.
Usage:
int a {9};int b {10};Serial <<"You have" << a <<" out of" << b <<" retries left.\n";// Prints: "You have 9 out of 10 retries left."Serial << makePair(1.2,4) <<'' << makePair(12, BIN) <<'\n';// Prints: "1.2000 1100"