Fix yet another log issue

This commit is contained in:
Roy Goldshtein 2024-03-01 16:04:13 +02:00 committed by GitHub
parent d02ae5c859
commit e69f8f3104
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -70,8 +70,8 @@ optional<ElectraRC3Data> ElectraRC3Protocol::decode(RemoteReceiveData src) {
void ElectraRC3Protocol::dump(const ElectraRC3Data &data) {
ESP_LOGD(ELECTRA_RC3_TAG,
"Received Electra RC3: power = 0x%X, mode = 0x%X, fan = 0x%X, swing = 0x%X, ifeel = 0x%X, temperature = "
"0x%X, sleep = 0x%X",
"Received Electra RC3: power = 0x%llX, mode = 0x%llX, fan = 0x%llX, swing = 0x%llX, "
"ifeel = 0x%llX, temperature = 0x%llX, sleep = 0x%llX",
data.power, data.mode, data.fan, data.swing, data.ifeel, data.temperature, data.sleep);
}