diff options
Diffstat (limited to 'include/esp8266/driver')
-rw-r--r-- | include/esp8266/driver/stdout.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/include/esp8266/driver/stdout.h b/include/esp8266/driver/stdout.h new file mode 100644 index 0000000..9114501 --- /dev/null +++ b/include/esp8266/driver/stdout.h @@ -0,0 +1,20 @@ +#ifndef STANDARDOUTPUT_H +#define STANDANDOUTPUT_H + +#include "object/outputstream.h" + +class StandardOutput : public OutputStream { + private: + StandardOutput(const StandardOutput ©); + + public: + StandardOutput () {} + void setup(); + + virtual void put(char c) override; + virtual void write(const char *s) override; +}; + +extern StandardOutput kout; + +#endif |