mirror of
https://github.com/Threnklyn/esphome-dev.git
synced 2026-05-19 12:43:28 +02:00
d3375193a9
Co-authored-by: Andreas Hergert <andreas.hergert@otrs.com> Co-authored-by: Otto Winter <otto@otto-winter.com> Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com>
25 lines
610 B
C++
25 lines
610 B
C++
#include "pipsolar_switch.h"
|
|
#include "esphome/core/log.h"
|
|
#include "esphome/core/application.h"
|
|
|
|
namespace esphome {
|
|
namespace pipsolar {
|
|
|
|
static const char *const TAG = "pipsolar.switch";
|
|
|
|
void PipsolarSwitch::dump_config() { LOG_SWITCH("", "Pipsolar Switch", this); }
|
|
void PipsolarSwitch::write_state(bool state) {
|
|
if (state) {
|
|
if (this->on_command_.length() > 0) {
|
|
this->parent_->switch_command(this->on_command_);
|
|
}
|
|
} else {
|
|
if (this->off_command_.length() > 0) {
|
|
this->parent_->switch_command(this->off_command_);
|
|
}
|
|
}
|
|
}
|
|
|
|
} // namespace pipsolar
|
|
} // namespace esphome
|