diff options
author | Daniel Friesel <derf@finalrewind.org> | 2018-01-16 11:04:22 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2018-01-16 11:04:22 +0100 |
commit | 17a7c6d3783288c3ed0b28f898232cd0ea00c0c9 (patch) | |
tree | 6874ee9be1bf6845f0c1c6a524e9792645872f08 /include/esp8266 | |
parent | 7b8c37d235c77d881db4184a798fc4b72a1fa279 (diff) |
esp8266 stdout: add printf_uint8 and printf_float
Diffstat (limited to 'include/esp8266')
-rw-r--r-- | include/esp8266/driver/stdout.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/esp8266/driver/stdout.h b/include/esp8266/driver/stdout.h index 5a75096..038de2e 100644 --- a/include/esp8266/driver/stdout.h +++ b/include/esp8266/driver/stdout.h @@ -14,6 +14,8 @@ class StandardOutput { void put(char c); void write(const char *s); void flush() {} + void printf_uint8(unsigned char num); + void printf_float(float num); StandardOutput & operator<<(char c); StandardOutput & operator<<(unsigned char c); |