Test query door for 0x37 panel

This commit is contained in:
Marius Muja 2024-01-18 19:21:20 -08:00
parent 0308fa5ff3
commit 924da9b58c
1 changed files with 1 additions and 1 deletions

View File

@ -354,7 +354,7 @@ namespace secplus1 {
} else {
// inject door status request
if (door_moving_ || (millis() - this->last_status_query_ > 10000)) {
this->transmit_byte(static_cast<uint8_t>(CommandType::QUERY_DOOR_STATUS));
this->enqueue_transmit(CommandType::QUERY_DOOR_STATUS);
this->last_status_query_ = millis();
}
}