|
| | HardwareSerial (int uart_nr) |
| |
| void | begin (unsigned long baud) |
| |
| void | begin (unsigned long baud, uint8_t config) |
| |
| void | begin (unsigned long, uint8_t, uint8_t) |
| |
| void | end () |
| |
| void | swap () |
| |
| int | available (void) override |
| |
| int | peek (void) override |
| |
| int | read (void) override |
| |
| int | availableForWrite (void) |
| |
| void | flush (void) override |
| |
| size_t | write (uint8_t) override |
| |
| size_t | write (unsigned long n) |
| |
| size_t | write (long n) |
| |
| size_t | write (unsigned int n) |
| |
| size_t | write (int n) |
| |
| | operator bool () const |
| |
| void | setDebugOutput (bool) |
| |
| bool | isTxEnabled (void) |
| |
| bool | isRxEnabled (void) |
| |
| | Stream () |
| |
| void | setTimeout (unsigned long timeout) |
| |
| bool | find (const char *target) |
| |
| bool | find (uint8_t *target) |
| |
| bool | find (const char *target, size_t length) |
| |
| bool | find (const uint8_t *target, size_t length) |
| |
| bool | find (char target) |
| |
| bool | findUntil (const char *target, const char *terminator) |
| |
| bool | findUntil (const uint8_t *target, const char *terminator) |
| |
| bool | findUntil (const char *target, size_t targetLen, const char *terminate, size_t termLen) |
| |
| bool | findUntil (const uint8_t *target, size_t targetLen, const char *terminate, size_t termLen) |
| |
| long | parseInt () |
| |
| float | parseFloat () |
| |
| size_t | readBytes (char *buffer, size_t length) |
| |
| size_t | readBytes (uint8_t *buffer, size_t length) |
| |
| size_t | readBytesUntil (char terminator, char *buffer, size_t length) |
| |
| size_t | readBytesUntil (char terminator, uint8_t *buffer, size_t length) |
| |
| String | readString () |
| |
| String | readStringUntil (char terminator) |
| |
| | Print () |
| |
| int | getWriteError () |
| |
| void | clearWriteError () |
| |
| size_t | write (const char *str) |
| |
| virtual size_t | write (const uint8_t *buffer, size_t size) |
| |
| size_t | write (const char *buffer, size_t size) |
| |
| size_t | printf (const char *format,...) __attribute__((format(printf |
| |
| size_t size_t | print (const __FlashStringHelper *) |
| |
| size_t | print (const String &) |
| |
| size_t | print (const char[]) |
| |
| size_t | print (char) |
| |
| size_t | print (unsigned char, int=10) |
| |
| size_t | print (int, int=10) |
| |
| size_t | print (unsigned int, int=10) |
| |
| size_t | print (long, int=10) |
| |
| size_t | print (unsigned long, int=10) |
| |
| size_t | print (double, int=2) |
| |
| size_t | print (const Printable &) |
| |
| size_t | println (const __FlashStringHelper *) |
| |
| size_t | println (const String &s) |
| |
| size_t | println (const char[]) |
| |
| size_t | println (char) |
| |
| size_t | println (unsigned char, int=10) |
| |
| size_t | println (int, int=10) |
| |
| size_t | println (unsigned int, int=10) |
| |
| size_t | println (long, int=10) |
| |
| size_t | println (unsigned long, int=10) |
| |
| size_t | println (double, int=2) |
| |
| size_t | println (const Printable &) |
| |
| size_t | println (void) |
| |