Files
xiaozhi-esp32/main/SystemReset.h

18 lines
237 B
C
Raw Normal View History

2024-09-10 00:45:13 +08:00
#ifndef _SYSTEM_RESET_H
#define _SYSTEM_RESET_H
class SystemReset {
public:
SystemReset();
void CheckButtons();
private:
void ResetNvsFlash();
void ResetToFactory();
void RestartInSeconds(int seconds);
};
#endif