From 17a7c6d3783288c3ed0b28f898232cd0ea00c0c9 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Tue, 16 Jan 2018 11:04:22 +0100 Subject: esp8266 stdout: add printf_uint8 and printf_float --- include/esp8266/driver/stdout.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'include') 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); -- cgit v1.2.3