mirror of
https://github.com/esphome/esphome.git
synced 2025-11-20 16:55:49 +00:00
13 lines
302 B
C++
13 lines
302 B
C++
#include "gate_threshold_number.h"
|
|
|
|
namespace esphome::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 esphome::ld2410
|