You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use case: allow to store configuration from ram back to freshly updated SPIFFS. Avoid loss on configuration due to OTA wiping the filesystem config files.
Potential flow:
// OTA update overwrites SPIFFS and unmounts the SPIFFS library
ArduinoOTA.onEnd([]() {
if (SPIFFS.begin()) {
// write config files to spiffs again
}
});