arduino-esp32/tests/nvs/nvs.ino
Jan Procházka ac7879c683
Added NVS test sketch + test script (#6885)
* Added NVS test sketch + test script

* Added cfg.json with multiple fqbns

* cfg.json missing commas fix

* Changed OPI PSRAM to QSPI accordind to new HW setup.

* disabled PSRAM for ESP32S3

* Reverting PSRAM changes

* Remove Octal flash test

Octal flash needs to be tested locally before each release.
2022-08-15 14:47:07 +02:00

36 lines
671 B
C++

#include <Preferences.h>
Preferences preferences;
void setup() {
Serial.begin(115200);
while (!Serial) {
;
}
preferences.begin("my-app", false);
// Get the counter value, if the key does not exist, return a default value of 0
unsigned int counter = preferences.getUInt("counter", 0);
// Print the counter to Serial Monitor
Serial.printf("Current counter value: %u\n", counter);
// Increase counter by 1
counter++;
// Store the counter to the Preferences
preferences.putUInt("counter", counter);
// Close the Preferences
preferences.end();
// Wait 1 second
delay(1000);
// Restart ESP
ESP.restart();
}
void loop() {}