You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I wrote a couple of lines of helper code to allow for easy printing. If anyone is interested, I could incorporate it in Stream.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"
Maybe you can prepare a PR for this? I might add though, that there's some possibility that this might never make it into the Arduino API (not my call though).
Activity
[-]PR for easy printing?[/-][+]Add "streaming" syntax support to Print class[/+]aentinger commentedon Feb 6, 2023
Hi @jfjlaros ☕ 👋
Maybe you can prepare a PR for this? I might add though, that there's some possibility that this might never make it into the Arduino API (not my call though).
jfjlaros commentedon Feb 6, 2023
I can try, but this issue has been transferred to a repository that none of the cores I use depend on. So testing will be challenging.
jfjlaros commentedon Feb 6, 2023
PR #181 is more or less what I had in mind.