|
virtual void | clear (void)=0 |
|
virtual void | home (void)=0 |
|
virtual void | setCursor (uint8_t, uint8_t)=0 |
|
| Print () |
|
| Print (const Print &)=delete |
|
| Print (Print &&)=delete |
|
virtual | ~Print () |
|
Print & | operator= (const Print &)=delete |
|
Print & | operator= (Print &&)=delete |
|
int | getWriteError () |
| Gets last error. More...
|
|
void | clearWriteError () |
| Clears the last write error. More...
|
|
virtual size_t | write (uint8_t c)=0 |
| Writes a single character to output stream. More...
|
|
size_t | write (const char *str) |
| Writes a c-string to output stream. More...
|
|
virtual size_t | write (const uint8_t *buffer, size_t size) |
| Writes characters from a buffer to output stream. More...
|
|
size_t | write (const char *buffer, size_t size) |
| Writes characters from a buffer to output stream. More...
|
|
size_t | print (char c) |
| Prints a single character to output stream. More...
|
|
size_t | print (const char str[]) |
| Prints a c-string to output stream. More...
|
|
size_t | print (double num, int digits=2) |
| Print a floating-point number to output stream. More...
|
|
template<typename T > |
std::enable_if< has_printTo< T >::value, size_t >::type | print (const T &obj) |
| Prints a Printable object to output stream. More...
|
|
size_t | print (const String &s) |
| Prints a String to output stream. More...
|
|
template<typename E > |
std::enable_if< std::is_enum< E >::value &&!std::is_convertible< E, int >::value, size_t >::type | print (E value) |
| enums can be printed as strings provided they have a toString(E) implementation. More...
|
|
size_t | println () |
| Prints a newline to output stream. More...
|
|
template<typename... Args> |
size_t | println (const Args &... args) |
| Print value plus newline to output stream. More...
|
|
size_t | printf (const char *fmt,...) |
| Prints a formatted c-string to output stream. More...
|
|
size_t | print (unsigned long num, uint8_t base=DEC) |
|
template<typename... Args> |
size_t | print (unsigned long num, Args... args) |
|
template<typename... Args> |
size_t | print (const unsigned long long &num, Args... args) |
|
size_t | print (long num, uint8_t base=DEC) |
|
template<typename... Args> |
size_t | print (long num, Args... args) |
|
template<typename... Args> |
size_t | print (const long long &num, Args... args) |
|
template<typename... Args> |
size_t | print (unsigned int num, Args... args) |
|
template<typename... Args> |
size_t | print (unsigned char num, Args... args) |
|
template<typename... Args> |
size_t | print (int num, Args... args) |
|