diff --git a/wled00/wled19_ir.ino b/wled00/wled19_ir.ino index f59dd63a7..88d1bdffc 100644 --- a/wled00/wled19_ir.ino +++ b/wled00/wled19_ir.ino @@ -138,10 +138,9 @@ void handleIR() if (irrecv->decode(&results)) { - DEBUG_PRINT("IR recv\r\n0x"); - #ifdef WLED_DEBUG + Serial.print("IR recv\r\n0x"); Serial.println((uint32_t)results.value, HEX); - #endif + Serial.println(); decodeIR(results.value); irrecv->resume(); }