Update IRrecvDumpV2.ino

looks like this multiplier was omitted and needs to be include to make the output meaningful/useful???

Would also explain some weird output I have seen posted.
This commit is contained in:
AnalysIR
2015-08-20 15:53:50 +01:00
parent ef4ba97522
commit 3d3c2b9b28

View File

@@ -127,7 +127,7 @@ void dumpCode (decode_results *results)
// Dump data // Dump data
for (int i = 0; i < results->rawlen; i++) { for (int i = 0; i < results->rawlen; i++) {
Serial.print(results->rawbuf[i], DEC); Serial.print(results->rawbuf[i] * USECPERTICK, DEC);
Serial.print(","); Serial.print(",");
if (!(i&1)) Serial.print(" "); if (!(i&1)) Serial.print(" ");
} }