Preferences icon indicating copy to clipboard operation
Preferences copied to clipboard

Preferences library for Arduino, ESP8266, RP2040 and Particle. ESP32-compatible API

Results 6 Preferences issues
Sort by recently updated
recently updated
newest added

@vshymanskyy Currently on upload of filesystem image (I do it with PlatformIO), I am losing data that was stored via this library. Do you know a way to prevent this?...

Hi, thanks for good job Volodymyr. It would be nice, to have compilation error/warning info, when a parameter name is too long (>15 chars). Best regards, Jozef

### Hello :wave: When porting my current project from ESP32 to ESP8266 all my getString calls didn't work as expected. Basically when using the char * overload to copy the...

So I had issue where long naming caused that particular preference not work. In my case it was "doorAcceleration1" and "doorAcceleration2" that not worked for me and returned value of...

I added the code before returning: `close(fd); // should close here` ``` static bool _fs_verify(const char* path, const void* buf, int bufsize) { int fd = open(path, O_RDONLY); if (fd...