mirror of
https://github.com/esphome/esphome.git
synced 2025-04-07 03:10:27 +01:00
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com> Co-authored-by: Spencer Yan <spencer@spenyan.com>
19 lines
391 B
C++
19 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
|