From 7e04a9f9d9c1b6b505505c74199cd9e7a359d159 Mon Sep 17 00:00:00 2001 From: Theo Arends <11044339+arendst@users.noreply.github.com> Date: Tue, 2 Feb 2021 10:15:14 +0100 Subject: [PATCH] Oops --- tasmota/xdrv_05_irremote_full.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasmota/xdrv_05_irremote_full.ino b/tasmota/xdrv_05_irremote_full.ino index 1d7e0ed14..0b7f18b5a 100644 --- a/tasmota/xdrv_05_irremote_full.ino +++ b/tasmota/xdrv_05_irremote_full.ino @@ -253,7 +253,7 @@ void sendIRJsonState(const struct decode_results &results) { ResponseAppend_P(PSTR("\"0x%0_X\",\"" D_JSON_IR_DATALSB "\":\"0x%0_X\""), &results.value, &reverse); } else { // UNKNOWN - ResponseAppend_P(PSTR("\"0x&08X\""), (uint32_t) results.value); // Unknown is always 32 bits + ResponseAppend_P(PSTR("\"0x%08X\""), (uint32_t) results.value); // Unknown is always 32 bits } } }