mirror of
https://github.com/esphome/esphome.git
synced 2025-09-14 09:12:19 +01:00
Co-authored-by: Keith Burzinski <kbx81x@gmail.com> Co-authored-by: J. Nick Koston <nick@koston.org>
13 lines
238 B
C++
13 lines
238 B
C++
#include "bluetooth_switch.h"
|
|
|
|
namespace esphome {
|
|
namespace ld2412 {
|
|
|
|
void BluetoothSwitch::write_state(bool state) {
|
|
this->publish_state(state);
|
|
this->parent_->set_bluetooth(state);
|
|
}
|
|
|
|
} // namespace ld2412
|
|
} // namespace esphome
|