feat: add debug logging for unknown commands to decipher more
This commit is contained in:
parent
a3a6b0ae0e
commit
2a9126f7ac
|
@ -124,7 +124,7 @@ namespace ratgdo {
|
||||||
ESP_LOGV(TAG, "Motion: %d (toggle)", this->motionState);
|
ESP_LOGV(TAG, "Motion: %d (toggle)", this->motionState);
|
||||||
} else {
|
} else {
|
||||||
// 0x84 -- is it used?
|
// 0x84 -- is it used?
|
||||||
ESP_LOGV(TAG, "Unknown command: %04x", cmd);
|
ESP_LOGV(TAG, "Unknown command: cmd=%04x nibble=%02d byte1=%02d byte2=%02d", cmd, nibble, byte1, byte2);
|
||||||
}
|
}
|
||||||
return cmd;
|
return cmd;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue