mirror of
https://github.com/esphome/esphome.git
synced 2025-11-20 16:55:49 +00:00
Co-authored-by: Keith Burzinski <kbx81x@gmail.com> Co-authored-by: J. Nick Koston <nick@koston.org>
13 lines
258 B
C++
13 lines
258 B
C++
#include "engineering_mode_switch.h"
|
|
|
|
namespace esphome {
|
|
namespace ld2412 {
|
|
|
|
void EngineeringModeSwitch::write_state(bool state) {
|
|
this->publish_state(state);
|
|
this->parent_->set_engineering_mode(state);
|
|
}
|
|
|
|
} // namespace ld2412
|
|
} // namespace esphome
|