IR codes will now also be printed without debug enabled

pull/81/head
cschwinne 2018-11-22 22:43:44 +01:00
rodzic cd234673ea
commit 686f2c4aa6
1 zmienionych plików z 2 dodań i 3 usunięć

Wyświetl plik

@ -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();
}