esphome/esphome/components/ld2410/number/light_threshold_number.h

18 lines
358 B
C++

#pragma once
#include "esphome/components/number/number.h"
#include "../ld2410.h"
namespace esphome {
namespace ld2410 {
class LightThresholdNumber : public number::Number, public Parented<LD2410Component> {
public:
LightThresholdNumber() = default;
protected:
void control(float value) override;
};
} // namespace ld2410
} // namespace esphome