MySensors Library & Examples
2.3.2-62-ge298769
|
A class that prints to stdout and reads from stdin.
Definition at line 31 of file StdInOutStream.h.
#include <StdInOutStream.h>
Public Member Functions | |
void | begin (int baud) |
This function does nothing. More... | |
int | available () |
This function does nothing. More... | |
int | read () |
Reads 1 key pressed from the keyboard. More... | |
size_t | write (uint8_t b) |
Writes a single byte to stdout. More... | |
int | peek () |
Not supported. More... | |
void | flush () |
Flush stdout. | |
void | end () |
Nothing to do, flush stdout. | |
int StdInOutStream::available | ( | ) |
This function does nothing.
void StdInOutStream::begin | ( | int | baud | ) |
This function does nothing.
baud | Ignored parameter. |
int StdInOutStream::peek | ( | ) |
Not supported.
int StdInOutStream::read | ( | ) |
Reads 1 key pressed from the keyboard.
size_t StdInOutStream::write | ( | uint8_t | b | ) |
Writes a single byte to stdout.
b | byte to write. |