We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I noticed Serial does not support Serial.printf. This is what I have done so far. could be wrong Please correct me if I am wrong here.
Serial.printf
in Print.h
Print.h
size_t printf(const char *format, ...);
in Print.cpp
Print.cpp
#include <stdarg.h> // Required for va_list, va_start, va_end ..... size_t Print::printf(const char *format, ...) { va_list arg; va_start(arg, format); size_t ret = vprintf(format, arg); va_end(arg); return ret; }
The text was updated successfully, but these errors were encountered:
Closing as off topic since the Print class is not implemented in this repository, but instead in https://github.com/arduino/ArduinoCore-API.
Print
We already have a request in that repository: arduino/ArduinoCore-API#32
Sorry, something went wrong.
per1234
No branches or pull requests
I noticed Serial does not support
Serial.printf
. This is what I have done so far. could be wrong Please correct me if I am wrong here.in
Print.h
size_t printf(const char *format, ...);
in
Print.cpp
The text was updated successfully, but these errors were encountered: