mirror of
https://github.com/esphome/esphome.git
synced 2025-11-20 08:46:01 +00:00
19 lines
347 B
C++
19 lines
347 B
C++
#pragma once
|
|
|
|
#include "esphome/components/select/select.h"
|
|
#include "../ld2410.h"
|
|
|
|
namespace esphome {
|
|
namespace ld2410 {
|
|
|
|
class BaudRateSelect : public select::Select, public Parented<LD2410Component> {
|
|
public:
|
|
BaudRateSelect() = default;
|
|
|
|
protected:
|
|
void control(size_t index) override;
|
|
};
|
|
|
|
} // namespace ld2410
|
|
} // namespace esphome
|