ESPHome 2025.12.1
Loading...
Searching...
No Matches
reconfig_buttons.cpp
Go to the documentation of this file.
1#include "reconfig_buttons.h"
3#include "esphome/core/log.h"
4
5static const char *const TAG = "ld2420.button";
6
7namespace esphome::ld2420 {
8
9void LD2420ApplyConfigButton::press_action() { this->parent_->apply_config_action(); }
10void LD2420RevertConfigButton::press_action() { this->parent_->revert_config_action(); }
11void LD2420RestartModuleButton::press_action() { this->parent_->restart_module_action(); }
12void LD2420FactoryResetButton::press_action() { this->parent_->factory_reset_action(); }
13
14} // namespace esphome::ld2420