Files
esphome-dev/esphome/components/seeed_mr24hpc1/select/existence_boundary_select.cpp
T
2024-03-12 16:33:40 +13:00

16 lines
369 B
C++

#include "existence_boundary_select.h"
namespace esphome {
namespace seeed_mr24hpc1 {
void ExistenceBoundarySelect::control(const std::string &value) {
this->publish_state(value);
auto index = this->index_of(value);
if (index.has_value()) {
this->parent_->set_existence_boundary(index.value());
}
}
} // namespace seeed_mr24hpc1
} // namespace esphome