31 lines
706 B
C++
31 lines
706 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, "Running setup for '%s'", this->name_.c_str());
|
|
|
|
bool initial_state = this->get_initial_state_with_restore_mode().value_or(false);
|
|
|
|
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
|