mirror of
https://github.com/Threnklyn/esphome-dev.git
synced 2026-05-19 20:53:26 +02:00
13 lines
265 B
C++
13 lines
265 B
C++
#include "light_out_control_select.h"
|
|
|
|
namespace esphome {
|
|
namespace ld2410 {
|
|
|
|
void LightOutControlSelect::control(const std::string &value) {
|
|
this->publish_state(value);
|
|
this->parent_->set_light_out_control();
|
|
}
|
|
|
|
} // namespace ld2410
|
|
} // namespace esphome
|