今天我們來(lái)說說ESP32 for Arduino NVS分區(qū)永久保存數(shù)據(jù)。
ESP32 for Arduino NVS分區(qū)
上一節(jié)我們講了整個(gè)ESP32的存儲(chǔ)分布,其中有一個(gè)NVS分區(qū),這個(gè)分區(qū)專門用來(lái)存儲(chǔ)數(shù)據(jù)的,系統(tǒng)在復(fù)位或斷電后數(shù)據(jù)仍然存在,我們可以使用Preferences庫(kù)保存網(wǎng)絡(luò)SSID,密碼,一些閾值或者IO的最后狀態(tài)等。
在保存數(shù)據(jù)的時(shí)候,我們推薦使用Preferences庫(kù),不推薦使用EEPROM庫(kù)。
使用Preferences庫(kù)保存的數(shù)據(jù)結(jié)構(gòu)如下,也叫鍵值對(duì):
namespace {
key:value
}
一個(gè)命名空間中也可以有不同的鍵:
namespace {
key1: value1
key2: value2
}
實(shí)際使用中,我們可以用來(lái)保存網(wǎng)絡(luò)憑證:
credentials {
ssid: "your_ssid"
pass: "your_pass"
}
也可以有多個(gè)具有相同鍵的命名空間(但每個(gè)鍵都有其值):
namespace1{
key:value1
}
namespace2{
key:value2
}
使用Preferences庫(kù)時(shí),應(yīng)該定義要保存的數(shù)據(jù)類型。如果想讀取該數(shù)據(jù),則必須知道保存的數(shù)據(jù)類型,也就是說,寫入和讀取的數(shù)據(jù)類型應(yīng)該相同。
支持以下數(shù)據(jù)類型的保存:char、char、short、Ushort、int、Uint、long、Ulong、long64、Ulong64、float、double、bool、字符串和字節(jié)。
Preferences庫(kù)函數(shù)說明
首先包含頭文件
Preferences 庫(kù)
然后定義一個(gè)實(shí)例
Preferences preferences;
打開一個(gè)命名空間
begin方法打開一個(gè)帶有定義命名空間的“儲(chǔ)存空間”,參數(shù)為false代表我們?cè)谧x/寫模式下使用,為true代表以只讀的方式打開或創(chuàng)建命令空間,命名空間名稱最多為15個(gè)字符。
preferences.begin("my-app", false);
清除preferences
從打開的命名空間中刪除一個(gè)鍵。
preferences.remove(key);
關(guān)閉preferences
使用end方法在打開的命名空間下關(guān)閉preferences
preferences.end();
放置一個(gè)k-v
獲取一個(gè)k-v
刪除命名空間
在Preferences 庫(kù)中,并沒有完全刪除命令空間的方法,我們存儲(chǔ)很多數(shù)據(jù)之后,nvs分區(qū)可能就滿了,所以我們想要完全擦除nvs分區(qū),可以使用以下程序運(yùn)行一次:
#include < nvs_flash.h >
void setup() {
nvs_flash_erase(); // 擦除NVS分區(qū)
nvs_flash_init(); // 初始化NVS分區(qū)
while(true);
}
void loop() {
}
程序示例
我們直接打開Example中的例子,StartCounter
/*
ESP32 startup counter example with Preferences library.
This simple example demonstrates using the Preferences library to store how many times the ESP32 module has booted.
The Preferences library is a wrapper around the Non-volatile storage on ESP32 processor.
created for arduino-esp32 09 Feb 2017 by Martin Sloup (Arcao)
Complete project details at https://RandomNerdTutorials.com/esp32-save-data-permanently-preferences/
*/
#include < Preferences.h >
Preferences preferences;
void setup() {
Serial.begin(115200);
Serial.println();
// Open Preferences with my-app namespace. Each application module, library, etc
// has to use a namespace name to prevent key name collisions. We will open storage in
// RW-mode (second parameter has to be false).
// Note: Namespace name is limited to 15 chars.
preferences.begin("my-app", false);
// Remove all preferences under the opened namespace
//preferences.clear();
// Or remove the counter key only
//preferences.remove("counter");
// Get the counter value, if the key does not exist, return a default value of 0
// Note: Key name is limited to 15 chars.
unsigned int counter = preferences.getUInt("counter", 0);
// Increase counter by 1
counter++;
// Print the counter to Serial Monitor
Serial.printf("Current counter value: %un", counter);
// Store the counter to the Preferences
preferences.putUInt("counter", counter);
// Close the Preferences
preferences.end();
// Wait 10 seconds
Serial.println("Restarting in 10 seconds...");
delay(10000);
// Restart ESP
ESP.restart();
}
void loop() {
}
這個(gè)例子增加了一個(gè)counter鍵,每次運(yùn)行都加一,我們?cè)诎聪聫?fù)位鍵之后,可以看到下面你的現(xiàn)象,數(shù)據(jù)保存起來(lái)了。
Preferences庫(kù)很方便保存鍵:值對(duì)。即使在重置 ESP32 或斷電后,閃存中保存的數(shù)據(jù)仍然存在。
感謝大家,關(guān)于ESP32的學(xué)習(xí),希望大家Enjoy!
-
存儲(chǔ)
+關(guān)注
關(guān)注
13文章
4227瀏覽量
85580 -
網(wǎng)絡(luò)
+關(guān)注
關(guān)注
14文章
7486瀏覽量
88543 -
EEPROM
+關(guān)注
關(guān)注
9文章
1008瀏覽量
81336 -
數(shù)據(jù)結(jié)構(gòu)
+關(guān)注
關(guān)注
3文章
569瀏覽量
40074 -
ESP32
+關(guān)注
關(guān)注
17文章
951瀏覽量
16992
發(fā)布評(píng)論請(qǐng)先 登錄
相關(guān)推薦
評(píng)論