mirror of
https://github.com/Threnklyn/esphome-dev.git
synced 2026-05-20 21:13:28 +02:00
32 lines
702 B
C++
32 lines
702 B
C++
#include "output_switch.h"
|
|
#include "esphome/core/log.h"
|
|
|
|
namespace esphome {
|
|
namespace output {
|
|
|
|
static const char *const TAG = "output.switch";
|
|
|
|
void OutputSwitch::dump_config() { LOG_SWITCH("", "Output Switch", this); }
|
|
void OutputSwitch::setup() {
|
|
ESP_LOGCONFIG(TAG, "Setting up Output Switch '%s'...", this->name_.c_str());
|
|
|
|
bool initial_state = Switch::get_initial_state_with_restore_mode();
|
|
|
|
if (initial_state) {
|
|
this->turn_on();
|
|
} else {
|
|
this->turn_off();
|
|
}
|
|
}
|
|
void OutputSwitch::write_state(bool state) {
|
|
if (state) {
|
|
this->output_->turn_on();
|
|
} else {
|
|
this->output_->turn_off();
|
|
}
|
|
this->publish_state(state);
|
|
}
|
|
|
|
} // namespace output
|
|
} // namespace esphome
|