We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b21a7f commit 1fd88cdCopy full SHA for 1fd88cd
examples/IRrecvDumpV2/IRrecvDumpV2.ino
@@ -95,7 +95,7 @@ void dumpRaw (decode_results *results)
95
Serial.print(" -");
96
Serial.println(results->rawbuf[0] * USECPERTICK, DEC);
97
for (int i = 1; i < results->rawlen; i++) {
98
- int x = results->rawbuf[i] * USECPERTICK;
+ unsigned int x = results->rawbuf[i] * USECPERTICK;
99
if (!(i & 1)) { // even
100
Serial.print("-");
101
if (x < 1000) Serial.print(" ") ;
0 commit comments