Preferences (NVS): Store Key鈥慥alue
2025-09-18 路 ~1 min read
Table of contents
1
2
3
4
5
6
7
8
9
10
| #include <Preferences.h>
Preferences prefs;
void setup() {
Serial.begin(115200);
prefs.begin("cfg");
prefs.putString("ssid", "MyWiFi");
prefs.putString("pw", "secret");
}
void loop() {}
|
馃敄
#nvs
#preferences
#storage