get rid of strings

This commit is contained in:
J. Nick Koston 2023-06-07 10:00:42 -05:00
parent af5a1f33ec
commit 53e507bee6
No known key found for this signature in database
1 changed files with 2 additions and 2 deletions

View File

@ -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()