mirror of
https://github.com/esphome/esphome.git
synced 2025-03-14 14:48:18 +00:00
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com> Co-authored-by: Marcus Better <marcus@better.se> Co-authored-by: Trevor Schirmer <24777085+TrevorSchirmer@users.noreply.github.com> Co-authored-by: Keith Burzinski <kbx81x@gmail.com>
19 lines
359 B
C++
19 lines
359 B
C++
#pragma once
|
|
|
|
#include "esphome/components/select/select.h"
|
|
#include "../ld2450.h"
|
|
|
|
namespace esphome {
|
|
namespace ld2450 {
|
|
|
|
class BaudRateSelect : public select::Select, public Parented<LD2450Component> {
|
|
public:
|
|
BaudRateSelect() = default;
|
|
|
|
protected:
|
|
void control(const std::string &value) override;
|
|
};
|
|
|
|
} // namespace ld2450
|
|
} // namespace esphome
|