uEspConfigLib
https://github.com/Naguissa/uEspConfigLib
|
The deffinitive ESP32 and ESP8266 configuration Arduino library, uEspConfigLib - SD-card FileSystem interface implementation part. More...
#include <uEspConfigLibFSSd.h>
Public Member Functions | |
uEspConfigLibFSSd (const bool) | |
Constructor. More... | |
uEspConfigLibFSSd (const char *, const bool=false, const uint8_t=SS) | |
Constructor. More... | |
bool | openToRead () |
Opens the file for read. More... | |
bool | openToWrite () |
Opens the file for write. More... | |
bool | readLine (String *) |
Reads a whole line from current file. More... | |
bool | write (const char *) |
Writes content to current file. More... | |
bool | closeFile () |
Closes current file. More... | |
Public Member Functions inherited from uEspConfigLibFSInterface | |
virtual bool | openToRead () |
Opens the file for read. More... | |
virtual bool | openToWrite () |
Opens the file for write. More... | |
virtual bool | readLine (String *) |
Reads a whole line from current file. More... | |
virtual bool | write (const char *) |
Writes content to current file. More... | |
virtual bool | closeFile () |
Closes current file. More... | |
uint8_t | status () |
Returns current status. More... | |
The deffinitive ESP32 and ESP8266 configuration Arduino library, uEspConfigLib - SD-card FileSystem interface implementation part.
This library consist in 2 parts:
One main library, uEspConfigLib, that manages configuration options, defaults, configuration site (HTML and JSON), configuration processing (from a POST of previous site) and configuration storage.
One interface to manage different configuration storages.
Currently storage classes are: SD-card, LittleFS, SPIFFS and none (values are lost after restart).
uEspConfigLibFSSd::uEspConfigLibFSSd | ( | const bool | init | ) |
Constructor.
init | Set to true if you want to initialize and format (if needed) the filesystem |
uEspConfigLibFSSd::uEspConfigLibFSSd | ( | const char * | path, |
const bool | init = false , |
||
const uint8_t | pin = SS |
||
) |
Constructor.
path | File path on filesystem |
init | Set to true if you want to initialize and format (if needed) the filesystem |
pin | CS pin, if not the standard one |
|
virtual |
|
virtual |
|
virtual |
|
virtual |
Reads a whole line from current file.
line | String pointer where line will be read |
Reimplemented from uEspConfigLibFSInterface.
|
virtual |
Writes content to current file.
data | char array pointer to be written |
Reimplemented from uEspConfigLibFSInterface.