We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b22c54 commit a72cc4cCopy full SHA for a72cc4c
src/Arduino.h
@@ -91,6 +91,7 @@ class Stream {
91
void print(const char *c) { stream << c; };
92
void print(const std::string& string) { stream << string; };
93
void print(int x) { stream << x; };
94
+ void print(uint32_t x) { stream << x; };
95
void print(int x, std::ios_base& manipulator(std::ios_base&)) { stream << manipulator << x; };
96
void println() { stream << std::endl; };
97
void println(const std::string& string) { stream << string << std::endl; };
0 commit comments