mirror of
https://github.com/esphome/esphome.git
synced 2025-04-06 19:00:29 +01:00
13 lines
262 B
C++
13 lines
262 B
C++
#include "max_distance_timeout_number.h"
|
|
|
|
namespace esphome {
|
|
namespace ld2410 {
|
|
|
|
void MaxDistanceTimeoutNumber::control(float value) {
|
|
this->publish_state(value);
|
|
this->parent_->set_max_distances_timeout();
|
|
}
|
|
|
|
} // namespace ld2410
|
|
} // namespace esphome
|