diff options
Diffstat (limited to 'include')
-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); |