mirror of
https://github.com/Threnklyn/esphome-dev.git
synced 2026-05-19 20:53:26 +02:00
ba73187c1b
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com>
24 lines
576 B
C++
24 lines
576 B
C++
#ifdef USE_ESP8266
|
|
#include "deep_sleep_component.h"
|
|
|
|
#include <Esp.h>
|
|
|
|
namespace esphome {
|
|
namespace deep_sleep {
|
|
|
|
static const char *const TAG = "deep_sleep";
|
|
|
|
optional<uint32_t> DeepSleepComponent::get_run_duration_() const { return this->run_duration_; }
|
|
|
|
void DeepSleepComponent::dump_config_platform_() {}
|
|
|
|
bool DeepSleepComponent::prepare_to_sleep_() { return true; }
|
|
|
|
void DeepSleepComponent::deep_sleep_() {
|
|
ESP.deepSleep(*this->sleep_duration_); // NOLINT(readability-static-accessed-through-instance)
|
|
}
|
|
|
|
} // namespace deep_sleep
|
|
} // namespace esphome
|
|
#endif
|