This commit is contained in:
J. Nick Koston 2023-06-07 13:34:01 -05:00
parent dbf74506b3
commit 1baeff1b0c
No known key found for this signature in database
1 changed files with 2 additions and 2 deletions

View File

@ -31,9 +31,9 @@ namespace ratgdo {
bool binary; bool binary;
state->current_values_as_binary(&binary); state->current_values_as_binary(&binary);
if (binary) { if (binary) {
this->parent_->turnOnLight(); this->parent_->lightOn();
} else { } else {
this->parent_->turnOffLight(); this->parent_->lightOff();
} }
} }