mirror of
https://github.com/Theaninova/Arduino-IRremote.git
synced 2025-12-11 08:56:14 +00:00
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:
@@ -127,7 +127,7 @@ void dumpCode (decode_results *results)
|
||||
|
||||
// Dump data
|
||||
for (int i = 0; i < results->rawlen; i++) {
|
||||
Serial.print(results->rawbuf[i], DEC);
|
||||
Serial.print(results->rawbuf[i] * USECPERTICK, DEC);
|
||||
Serial.print(",");
|
||||
if (!(i&1)) Serial.print(" ");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user