13 lines
205 B
C++
13 lines
205 B
C++
#include <nvs_flash.h>
|
|
|
|
void setup() {
|
|
|
|
nvs_flash_erase(); // erase the NVS partition and...
|
|
nvs_flash_init(); // initialize the NVS partition.
|
|
while (true);
|
|
|
|
}
|
|
|
|
void loop() {
|
|
;
|
|
} |