18 lines
391 B
C++
18 lines
391 B
C++
#pragma once
|
|
|
|
#include "esphome/components/select/select.h"
|
|
#include "../seeed_mr60fda2.h"
|
|
|
|
namespace esphome {
|
|
namespace seeed_mr60fda2 {
|
|
|
|
class SensitivitySelect : public select::Select, public Parented<MR60FDA2Component> {
|
|
public:
|
|
SensitivitySelect() = default;
|
|
|
|
protected:
|
|
void control(const std::string &value) override;
|
|
};
|
|
|
|
} // namespace seeed_mr60fda2
|
|
} // namespace esphome
|