mirror of
https://github.com/esphome/esphome.git
synced 2025-03-25 20:18:15 +00:00
13 lines
222 B
C++
13 lines
222 B
C++
#include "rf_switch.h"
|
|
|
|
namespace esphome {
|
|
namespace at581x {
|
|
|
|
void RFSwitch::write_state(bool state) {
|
|
this->publish_state(state);
|
|
this->parent_->set_rf_mode(state);
|
|
}
|
|
|
|
} // namespace at581x
|
|
} // namespace esphome
|