mirror of
https://github.com/esphome/esphome.git
synced 2025-11-19 16:25:50 +00:00
13 lines
253 B
C++
13 lines
253 B
C++
#include "light_out_control_select.h"
|
|
|
|
namespace esphome {
|
|
namespace ld2410 {
|
|
|
|
void LightOutControlSelect::control(size_t index) {
|
|
this->publish_state(index);
|
|
this->parent_->set_light_out_control();
|
|
}
|
|
|
|
} // namespace ld2410
|
|
} // namespace esphome
|