I have my IR receiver wired as attached. When I have power running through the board, the receiver becomes very hot.
Most likely, the receiver is wired backwards and now destroyed. It may take the Arduino with it.
Post a link to the receiver module, after reading and following the directions in the "How to use this forum" post.
#include <IRremote.h>
const int RECV_PIN = 9;
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();
}
}
I see you did not bother to read the "How to use this forum" post, or post a link to the module.
That is an outstanding approach to getting help!
I have read the "How to use this forum". I don't know what the link to the module is.
(deleted)
Emmad24:
I don't know what the link to the module is.
Perhaps start from the beginning. How did you acquire this module?
When you say module, do you mean the type of Arduino board? If so, I have an Arduino Uno and I got it from my professor for the class.
(deleted)
I had someone help and I got it working thank you though
Although I thought the picture would be enough because that is the type of receiver I have. Don't have a link to it.
The point is, you did not ever provide a picture of the IR receiver.
You did at one point, show a Fritzing diagram of something or other.
So someone helped you to put the connections round the right way.