ESPHome 2025.12.3
Loading...
Searching...
No Matches
zone_coordinate_number.h
Go to the documentation of this file.
1#pragma once
2
4#include "../ld2450.h"
5
6namespace esphome::ld2450 {
7
8class ZoneCoordinateNumber : public number::Number, public Parented<LD2450Component> {
9 public:
10 ZoneCoordinateNumber(uint8_t zone);
11
12 protected:
13 uint8_t zone_;
14 void control(float value) override;
15};
16
17} // namespace esphome::ld2450
Helper class to easily give an object a parent of type T.
Definition helpers.h:932
Base-class for all numbers.
Definition number.h:29