|
| | TwoWire () |
| |
| void | begin (int sda, int scl) |
| |
| void | pins (int sda, int scl) |
| |
| void | begin () |
| |
| void | begin (uint8_t) |
| |
| void | begin (int) |
| |
| void | setClock (uint32_t) |
| |
| void | setClockStretchLimit (uint32_t) |
| |
| void | beginTransmission (uint8_t) |
| |
| void | beginTransmission (int) |
| |
| uint8_t | endTransmission () |
| |
| uint8_t | endTransmission (uint8_t) |
| |
| size_t | requestFrom (uint8_t address, size_t size, bool sendStop) |
| |
| uint8_t | status () |
| |
| uint8_t | requestFrom (uint8_t, uint8_t) |
| |
| uint8_t | requestFrom (uint8_t, uint8_t, uint8_t) |
| |
| uint8_t | requestFrom (int, int) |
| |
| uint8_t | requestFrom (int, int, int) |
| |
| size_t | write (uint8_t) override |
| | Writes a single character to output stream. More...
|
| |
| size_t | write (const uint8_t *, size_t) override |
| | Writes characters from a buffer to output stream. More...
|
| |
| int | available () override |
| |
| int | read () override |
| |
| int | peek () override |
| |
| void | flush () override |
| |
| void | onReceive (void(*)(int)) |
| |
| void | onRequest (void(*)()) |
| |
| size_t | write (unsigned long n) |
| |
| size_t | write (long n) |
| |
| size_t | write (unsigned int n) |
| |
| size_t | write (int n) |
| |
| | Stream () |
| |
| void | setTimeout (unsigned long timeout) |
| | Set maximum milliseconds to wait for stream data, default is 1 second. More...
|
| |
| bool | find (const char *target) |
| | Read data from the stream until the target string is found. More...
|
| |
| bool | find (const char *target, size_t length) |
| | Read data from the stream until the target string of given length is found. More...
|
| |
| bool | findUntil (const char *target, const char *terminator) |
| | As find() but search ends if the terminator string is found. More...
|
| |
| bool | findUntil (const char *target, size_t targetLen, const char *terminate, size_t termLen) |
| | As findUntil(const char*, const char*) but search ends if the terminate string is found. More...
|
| |
| long | parseInt () |
| | Returns the first valid (long) integer value from the current position. More...
|
| |
| float | parseFloat () |
| | float version of parseInt More...
|
| |
| virtual size_t | readBytes (char *buffer, size_t length) |
| | Read chars from stream into buffer. More...
|
| |
| size_t | readBytesUntil (char terminator, char *buffer, size_t length) |
| | As readBytes() with terminator character. More...
|
| |
| virtual String | readString (size_t maxLen) |
| | Like readBytes but place content into a String More...
|
| |
| String | readStringUntil (char terminator) |
| |
| virtual int | indexOf (char c) |
| |
| virtual | ~Print () |
| |
| int | getWriteError () |
| | Gets last error. More...
|
| |
| void | clearWriteError () |
| | Clears the last write error. More...
|
| |
| size_t | write (const char *str) |
| | Writes a c-string 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...
|
| |
| size_t | print (const Printable &p) |
| | Prints a Printable object to output stream. More...
|
| |
| size_t | print (const String &s) |
| | Prints a String to output stream. More...
|
| |
| size_t | println () |
| | Prints a newline to output stream. More...
|
| |
| size_t | println (const char str[]) |
| | Prints a c-string to output stream, appending newline. More...
|
| |
| size_t | println (char c) |
| | Prints a single character to output stream, appending newline. More...
|
| |
| size_t | println (double num, int digits=2) |
| | Print a floating-point number to output stream, appending newline. More...
|
| |
| size_t | println (const Printable &p) |
| | Prints a Printable object to output stream, appending newline. More...
|
| |
| size_t | println (const String &s) |
| | Prints a String to output stream, appending newline. More...
|
| |
| size_t | printf (const char *fmt,...) __attribute__((format(printf |
| | Prints a formatted c-string to output stream. More...
|
| |
| size_t | print (unsigned long num, int base=DEC) |
| |
| size_t | print (const unsigned long long &num, int base=DEC) |
| |
| size_t | print (long, int base=DEC) |
| |
| size_t | print (const long long &, int base=DEC) |
| |
| size_t | print (unsigned int num, int base=DEC) |
| |
| size_t | print (unsigned char num, int base=DEC) |
| |
| size_t | print (int num, int base=DEC) |
| |
| size_t | println (unsigned char num, int base=DEC) |
| |
| size_t | println (unsigned int num, int base=DEC) |
| |
| size_t | println (unsigned long num, int base=DEC) |
| |
| size_t | println (const unsigned long long &num, int base=DEC) |
| |
| size_t | println (int num, int base=DEC) |
| |
| size_t | println (long num, int base=DEC) |
| |
| size_t | println (const long long &num, int base=DEC) |
| |