mirror of
https://github.com/Threnklyn/esphome-dev.git
synced 2026-05-22 05:43:28 +02:00
22cdb8dfc3
Co-authored-by: descipher <120155735+GelidusResearch@users.noreply.github.com>
19 lines
373 B
C++
19 lines
373 B
C++
#pragma once
|
|
|
|
#include "../ld2420.h"
|
|
#include "esphome/components/select/select.h"
|
|
|
|
namespace esphome {
|
|
namespace ld2420 {
|
|
|
|
class LD2420Select : public Component, public select::Select, public Parented<LD2420Component> {
|
|
public:
|
|
LD2420Select() = default;
|
|
|
|
protected:
|
|
void control(const std::string &value) override;
|
|
};
|
|
|
|
} // namespace ld2420
|
|
} // namespace esphome
|