it shows this whenever i use it:
⸮⸮⸮⸮⸮⸮⸮⸮⸮⸮⸮⸮⸮⸮⸮⸮ɩ⸮⸮⸮⸮⸮⸮⸮⸮⸮⸮⸮ɩ⸮⸮⸮⸮⸮⸮⸮⸮⸮⸮⸮ɩ⸮⸮⸮⸮⸮⸮⸮⸮⸮⸮⸮⸮⸮⸮⸮⸮⸮⸮⸮⸮⸮⸮⸮⸮⸮⸮
on any project with serial monitor.
can some one explain?
im mad
maybe try on your board.
link to project:http://www.circuitbasics.com/arduino-ir-remote-receiver-tutorial/
heres the code:
#include <IRremote.h>
const int RECV_PIN = 7;
IRrecv irrecv(RECV_PIN);
decode_results results;
void setup(){
Serial.begin(9600);
irrecv.enableIRIn();
irrecv.blink13(true);
}
void loop(){
if (irrecv.decode(&results)){
Serial.println(results.value, HEX);
irrecv.resume();
}
}