OMOTE/Platformio/hardware/ESP32/preferencesStorage_hal_esp32.h

12 lines
286 B
C
Raw Normal View History

2024-03-10 14:27:46 -04:00
#pragma once
#include <string>
void init_preferences_HAL(void);
void save_preferences_HAL(void);
std::string get_currentScene_HAL();
void set_currentScene_HAL(std::string aCurrentScene);
std::string get_currentGUIname_HAL();
void set_currentGUIname_HAL(std::string aCurrentGUIname);