|
| File (SdFile f, const char *name) |
|
| File (void) |
|
virtual size_t | write (uint8_t) |
|
virtual size_t | write (const uint8_t *buf, size_t size) |
|
virtual int | read () |
|
virtual int | peek () |
|
virtual int | available () |
|
virtual void | flush () |
|
int | read (void *buf, uint16_t nbyte) |
|
boolean | seek (uint32_t pos) |
|
uint32_t | position () |
|
uint32_t | size () |
|
void | close () |
|
| operator bool () |
|
char * | name () |
|
boolean | isDirectory (void) |
|
File | openNextFile (uint8_t mode=O_RDONLY) |
|
void | rewindDirectory (void) |
|
template<typename T > |
size_t | write (T &src) |
|
| 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) |
|
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) |
|