esphome/esphome/components/seeed_mr24hpc1/select/motion_boundary_select.h

19 lines
397 B
C++

#pragma once
#include "esphome/components/select/select.h"
#include "../seeed_mr24hpc1.h"
namespace esphome {
namespace seeed_mr24hpc1 {
class MotionBoundarySelect : public select::Select, public Parented<MR24HPC1Component> {
public:
MotionBoundarySelect() = default;
protected:
void control(const std::string &value) override;
};
} // namespace seeed_mr24hpc1
} // namespace esphome