Hi, All
I'm trying to use ESP32 NVS memory.
Data is "key=value" pairs, both values should be passed into Inline-C functions.
How to be ?
I'm trying to use ESP32 NVS memory.
ArduinoNvs/examples/simpleFlashNVS.ino at master · rpolitex/ArduinoNvs
ESP32 NVS Non-volatile storage library. Contribute to rpolitex/ArduinoNvs development by creating an account on GitHub.
github.com
ArduinoNvs/src/ArduinoNvs.h at master · rpolitex/ArduinoNvs
ESP32 NVS Non-volatile storage library. Contribute to rpolitex/ArduinoNvs development by creating an account on GitHub.
github.com
B4X:
/*** String ***/
// write to flash
const String st_set = "`simple plain string`";
res = NVS.setString("st", st_set);
// read from flash
String st = NVS.getString("st");
Data is "key=value" pairs, both values should be passed into Inline-C functions.
How to be ?