get rid of strings
This commit is contained in:
parent
af5a1f33ec
commit
53e507bee6
|
@ -485,11 +485,11 @@ namespace ratgdo {
|
|||
void RATGDOComponent::sendDoorStatus()
|
||||
{
|
||||
DoorState val = static_cast<DoorState>(this->store_.doorState);
|
||||
ESP_LOGD(TAG, "Door state: %s", door_state_to_string(val);
|
||||
this->status_door_pin_->digital_write(this->store_.doorState == 1);
|
||||
ESP_LOGD(TAG, "Door state: %s", door_state_to_string(val));
|
||||
for (auto *child : this->children_) {
|
||||
child->on_door_state(val);
|
||||
}
|
||||
this->status_door_pin_->digital_write(this->store_.doorState == 1);
|
||||
}
|
||||
|
||||
void RATGDOComponent::sendLightStatus()
|
||||
|
|
Loading…
Reference in New Issue