At first I had a problem with this, I suspected it would work on an older version, but I didn't know which one, but I read the comments, set the version to 2.0.1 and everything works! Thank you for your help and bravo to the creator, but next time show what version of the library you are working on.
hello sir, I am facing a problem that here 8:05 when you pressed 2 you got 3D9AE3F7, but further in the video over here 8:23 you got 0xFF18E7 HEX code for 2...............how ??? please explain it to me i request you...............
Hello, I would really appreciate it if you reply to my comment. The thing is… I want to ask if in the end of the video, did you press the button 5 again to turn of the LED? Are the buttons normally open or normally closed buttons?
Mine only outputs FFFFFFFF, no matter what button i press. Can anybody explain the reasoning. I have the exact same code, I have a newer version of arduino though.
I get the following msg on the com port: "Thank you for using the IRremote library! It seems, that you are using a old version 2.0 code / example. This version is no longer supported!" IRremote version 4.2.0 is installed. I also downloaded your zip file, extracted it, and placed in the lib folder. In the msg below the sketch, it says, Invalid library found.
got stuck on the first step, even though i seem to have the exact same remote controller as shown in the video all the buttons transmit the same hex code - FFFFFF... my AC remote on the other hand does seem to work and provide different hex codes, so it can't be a problem with the circuit or the code, any ideas on what i could do to fix this?
done everything, still can't get it to work, I haven't found one single Arduino tutorial on UA-cam that correctly shows you how to use a remote with Arduino
You have to go into the examples folder and under irremote use the receiverDemo file or the simpleReciever file. It seems this file is obsolete and he didn't mention it.
Congratulations beautiful video. I faithfully reproduced the sketch. My remote control and my IR receiver work perfectly by themselves but no code appears on the screen. Can you give me some suggestions?
Good video! I copied the sketch but somehow no code appears on the screen. I tryed downgradeing it to version 2 but still nothing happens. I looked at all the comments but I still can't find any answers. Can anybody help?
I have problem when I connect my 5v power to sensor. Com port get disconnected to my pc. What i need to do. I try both 3.3v and 5v. Same happened. Com port get disconnected. After i removed the power it connected. I'm using Arduino Uno.
Me only FFFFFFFFFFF hex code is showing no matter what button i press please anybody solve my and others problem i didn't able to find any video about it on UA-cam please anybody solve this issue or make video about it🙏🙏🙏❤️
At first I had a problem with this, I suspected it would work on an older version, but I didn't know which one, but I read the comments, set the version to 2.0.1 and everything works! Thank you for your help and bravo to the creator, but next time show what version of the library you are working on.
this worked for me also, thank you!
Sorry dont get, typed the IR code out to 7:47, tried 4 different remotes, nothing from serial print, IR flashes when press remote keys
Excellent demonstration
this is so underrated this guy deserves 100k subs
can i change what hex code a button generated ? can i make that same remote turn off my tv with the same hex code my tv remote uses?
hello sir, I am facing a problem that here 8:05 when you pressed 2 you got 3D9AE3F7, but further in the video over here 8:23 you got 0xFF18E7 HEX code for 2...............how ??? please explain it to me i request you...............
Hello, I would really appreciate it if you reply to my comment. The thing is… I want to ask if in the end of the video, did you press the button 5 again to turn of the LED? Are the buttons normally open or normally closed buttons?
Mine only outputs FFFFFFFF, no matter what button i press. Can anybody explain the reasoning. I have the exact same code, I have a newer version of arduino though.
You have to use library version 2.0. That solved the issue for me!
F
@@nicolasfite9236only 2.0?
Mine also same problem
@@nicolasfite9236how did u do that?
I get the following msg on the com port: "Thank you for using the IRremote library!
It seems, that you are using a old version 2.0 code / example.
This version is no longer supported!"
IRremote version 4.2.0 is installed. I also downloaded your zip file, extracted it, and placed in the lib folder.
In the msg below the sketch, it says, Invalid library found.
I have the same issue.
Follow what is said in the message. Go the examples and pick the simpleReciever file. It should display the code on it.
If I where to say if receive and decoded ___ hex code than run a sketch that says go to a limit switch and stop ?
Hi, with all the buttons, when I press it, I get only ffffff, no matter which one it is. What could be the reason
It happens to me too
me too
@@mahmutkornek7804
Hello friend, would you have any Arduino code for a clock with a 7-segment display to set the time with an IR remote control? Or any example? Thanks
How do you "download from Github and install in the IDE"?
got stuck on the first step, even though i seem to have the exact same remote controller as shown in the video all the buttons transmit the same hex code - FFFFFF... my AC remote on the other hand does seem to work and provide different hex codes, so it can't be a problem with the circuit or the code, any ideas on what i could do to fix this?
Hi I have the same problem with permanent code FFFFFF. Did you solve this problem?
You need use 2.0 library
@@Ansarteryou need use 2.0 library version
@@titigrhey bro, can u show me how to use 2.0 library?
Discord ,WhatsApp,instagram for ?video
done everything, still can't get it to work, I haven't found one single Arduino tutorial on UA-cam that correctly shows you how to use a remote with Arduino
Same! Have you found a solution
You have to go into the examples folder and under irremote use the receiverDemo file or the simpleReciever file. It seems this file is obsolete and he didn't mention it.
Hello sir please decode the dc ceiling fan remote
what version of the library are you using? 2.0?
The newer version needs different code. I can help if u're facing problems
How can I added double pressing on the buttons?
Congratulations beautiful video. I faithfully reproduced the sketch. My remote control and my IR receiver work perfectly by themselves but no code appears on the screen. Can you give me some suggestions?
Check your baudrate. It could be a reason
i have the same issue there is no serial output showing up
try this script: #include
const int RECV_PIN = 7;
IRrecv irrecv(RECV_PIN);
decode_results results;
void setup() {
Serial.begin(9600);
irrecv.enableIRIn();
}
void loop() {
if (irrecv.decode(&results)) {
Serial.print("Received IR Signal: 0x");
Serial.println(results.value, HEX);
irrecv.resume();
}
}
Good video! I copied the sketch but somehow no code appears on the screen. I tryed downgradeing it to version 2 but still nothing happens. I looked at all the comments but I still can't find any answers. Can anybody help?
same boat, can't find anything on the new version of the library (4.4.0), other than endless pages on github none of which i understand
I have problem when I connect my 5v power to sensor. Com port get disconnected to my pc. What i need to do. I try both 3.3v and 5v. Same happened. Com port get disconnected. After i removed the power it connected. I'm using Arduino Uno.
It doesn't work for me. I get multiple codes for each button. Inconsistency.
I had the same problem but could not fix it, yet.
Have you found a solution for this?
@@fxry5943 Unfortunately not yet, someone promised me in instructables he would do something, I have been waiting for months!
@@fxry5943 no, not yet.
Code does not work :(
where is code
i only install zip file next what i do
Some of the methods have been deprecated really fast 😞
Wired the receiver as instructed, the receiver burned
my hex code is doing ffffffff
You have to use library version 2.0. That solved the issue for me!
Me only FFFFFFFFFFF hex code is showing no matter what button i press please anybody solve my and others problem i didn't able to find any video about it on UA-cam please anybody solve this issue or make video about it🙏🙏🙏❤️
Same problem
Use 2.0.1 library files, it's working