This commit is contained in:
J. Nick Koston 2023-06-09 18:04:32 -05:00
parent 1bf07caf3a
commit 378cf48a35
No known key found for this signature in database
3 changed files with 4 additions and 5 deletions

View File

@ -112,8 +112,7 @@ namespace ratgdo {
} else if (cmd == 0x284) {
motor = 1;
} else if (cmd == 0x280) {
button = bytes1 == 1
ESP_LOGD(TAG, "Pressed: %s", byte1 == 1 ? "pressed" : "released");
button = bytes1 == 1 ESP_LOGD(TAG, "Pressed: %s", byte1 == 1 ? "pressed" : "released");
} else if (cmd == 0x48c) {
openings = (byte1 << 8) | byte2;
ESP_LOGD(TAG, "Openings: %d", (byte1 << 8) | byte2);