Files
esp32-core/libraries/RainMaker/src/RMakerUtils.cpp
T
2026-05-22 21:52:50 +03:00

12 lines
318 B
C++

#include "RMakerUtils.h"
#ifdef CONFIG_ESP_RMAKER_WORK_QUEUE_TASK_STACK
#define RESET_DELAY_SEC 2
void RMakerFactoryReset(int reboot_seconds) {
esp_rmaker_factory_reset(RESET_DELAY_SEC, reboot_seconds);
}
void RMakerWiFiReset(int reboot_seconds) {
esp_rmaker_wifi_reset(RESET_DELAY_SEC, reboot_seconds);
}
#endif