mirror of
https://github.com/esphome/esphome.git
synced 2025-11-19 00:05:43 +00:00
15 lines
328 B
C++
15 lines
328 B
C++
#include "gate_threshold_number.h"
|
|
|
|
namespace esphome {
|
|
namespace ld2410 {
|
|
|
|
GateThresholdNumber::GateThresholdNumber(uint8_t gate) : gate_(gate) {}
|
|
|
|
void GateThresholdNumber::control(float value) {
|
|
this->publish_state(value);
|
|
this->parent_->set_gate_threshold(this->gate_);
|
|
}
|
|
|
|
} // namespace ld2410
|
|
} // namespace esphome
|