1
0
mirror of https://github.com/esphome/esphome.git synced 2025-10-29 22:24:26 +00:00

Add Seeed Studio mmWave Kit MR24HPC1 (#5761)

Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com>
Co-authored-by: Peter Pan <twinkle-pirate@hotmail.com>
This commit is contained in:
Citric Lee
2024-03-12 11:33:40 +08:00
committed by GitHub
parent 5b28bd3d97
commit 4bbde8357a
43 changed files with 2330 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
#pragma once
#include "esphome/components/select/select.h"
#include "../seeed_mr24hpc1.h"
namespace esphome {
namespace seeed_mr24hpc1 {
class ExistenceBoundarySelect : public select::Select, public Parented<MR24HPC1Component> {
public:
ExistenceBoundarySelect() = default;
protected:
void control(const std::string &value) override;
};
} // namespace seeed_mr24hpc1
} // namespace esphome