From 9a74475c8d88ff2d55742f7609ce3394fda3b653 Mon Sep 17 00:00:00 2001 From: Felipe Noronha Date: Fri, 13 Jan 2017 11:58:40 -0200 Subject: [PATCH] fix example error message --- examples/IRrecvDumpV2/IRrecvDumpV2.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/IRrecvDumpV2/IRrecvDumpV2.ino b/examples/IRrecvDumpV2/IRrecvDumpV2.ino index cbfadccec..725612735 100644 --- a/examples/IRrecvDumpV2/IRrecvDumpV2.ino +++ b/examples/IRrecvDumpV2/IRrecvDumpV2.ino @@ -66,7 +66,7 @@ void dumpInfo (decode_results *results) { // Check if the buffer overflowed if (results->overflow) { - Serial.println("IR code too long. Edit IRremoteInt.h and increase RAWLEN"); + Serial.println("IR code too long. Edit IRremoteInt.h and increase RAWBUF"); return; }