ESPHome 2025.12.3
Loading...
Searching...
No Matches
light_threshold_number.h
Go to the documentation of this file.
1#pragma once
2
4#include "../ld2410.h"
5
6namespace esphome::ld2410 {
7
8class LightThresholdNumber : public number::Number, public Parented<LD2410Component> {
9 public:
11
12 protected:
13 void control(float value) override;
14};
15
16} // namespace esphome::ld2410
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