-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added printf() to Print class #509
Conversation
Memory usage change @ 4ed591e
Click for full report table
Click for full report CSV
|
Thanks for taking the time to submit a pull request @tobozo. This was previously proposed at #482 and declined for the reasons detailed here:
Since this proposal is the same as the previous one, I will extrapolate that the conclusion is also the same. You are welcome to review the proposal in the |
This PR is a carbon copy of printf() implementation as found on some core packages such as esp8266 or esp32.
It enables simple stuff like this:
The
Print
class is inherited byStream
and any class that implementsPrint
e.g.fs::File
,SoftwareSerial
,HardwareSerial
,USB
,Udp
,Wire
.