forked from whitecatboard/Lua-RTOS-ESP32
-
Notifications
You must be signed in to change notification settings - Fork 0
NVS module
Jaume Olivé Petrus edited this page Jan 31, 2019
·
5 revisions
This module contains functions for store key-value pairs in flash without the need to have a file system. Although Lua RTOS has support for SPIFFS and FAT file systems the use of the NVS module can be useful for store small pieces of information, such as configuration parameters, without the overhead of a file system.
Write key-value pair into a namespace.
Arguments:
- namespace (string): the namespace to store the key-value pair.
- key (string): the key name.
- value (Lua value): the value. Can be any Lua type: nil, integer, number, boolean, or string.
Returns: nothing, or an exception.
nvs.write("settings","timeout", 10)
Read a key-value pair from namespace.
Arguments:
- namespace (string): the namespace to read the key-value pair.
- key (string): the key name to read.
Returns: linked value, or an exception.
nvs.read("settings","timeout")
Check if a key-value pair exists in namespace.
Arguments:
- namespace (string): the namespace to check the key-value pair existence.
- key (string): the key name to to check.
Returns: linked value, or an exception.
nvs.exists("settings","timeout")
Remove key-value pair in namespace.
Arguments:
- namespace (string): the namespace where the key is.
- key (string): the key name remove in namespace.
Returns: a boolean indicating if the key has been removed (true), or an exception.
nvs.rm("settings","timeout")