I forgot to say that the same code works correctly for samsung led tv. Of course, replacing void loop () with this: void loop() { delay(10000); for (int i = 0; i < 3; i++) { irsend.sendSAMSUNG(0xE0E040BF, 32); //SAMSUNG TV LED on/off (capturado con IRrecvDumpV2.ino) delay(40); } delay(10000); }
Hello Jason... I recorded the raw code for my TV. These raw codes seem to vary over a range of values.When i send these raw values it does sometime switches on the TV but most of the times it doesnt!! However for other buttons apart from the power on and off i get a fixed set of values and it does work properly for them.I wonder what is it with the power button..
Hello Jason, any news on the new updates? I'm looking forward to do the same thing, but to send the commands via RF and not IR..hope to see the new parts soon! Regards.
hi there Jason, thanks for the ausome vid. hope it will work for the AC im trying to control. 1,what model make remote/ device is this working on? i assume the #define RAWBUF 100 in IRremote should need be changed (increased) depending on the device -> Samsung AC is known for longer IR code. 2, must an IR LED be used (can an arduino IR transmitter be used with this), thanks?
Thank for sharing! One problem - this works FLAWLESSLY on my Arduino UNO but when I load the exact sketch on my Yun, nothing. No IR is being sent whatsoever. Triple checked my connections - any ideas?
Well, Thanks this is helping me on the way. Next I like to know, is it possible to send the commands over wire to the dataPin of the IR receiver. Yes i want to remove the IR part of it.
What if the encoding is uknown from the IR receiver? I'm trying to control 2 AC's by playing the received commands. The split unit is working but the cassette doesnt even though the remote is the same :\
Hi,could i ask a question, if i need to send more than 27 amounts command at raw format, and that arduino uno will show not enought memory alert, is that possible way to solve it ? THX a lot :)
+韋凡陳 You should create a function and initialize this variables locally inside this function. If you declare it global as he did in this video, you are gonna need an Arduino board like Mega because of th memory.
Excellent video, i cant wait to try it out. I tried to copy a Sony projector remote and got the Hex codes, but it was UIR..or Unknown format, i tried sending to the proj with no success. Hopefully when i try this out i'll be able to send commands the proj will register
Hi, i'm from Argentina, so, sorry for my english. This 2 chapters were amazing, you helped me a lot! Thank You! I want to know a thing, I have the IR transmitter and i need to know where to put it. The code comments at the beginning says that the IR LED must be connected to Arduino PWM Pin 3. I wish to know if I have to put the IR LED with a Resistor (and what ohms) or It can be connected directly to pin 3. Is there a way to change the pin in which i have to connect the IR LED? Thanks a Lot! :)
Hey, great video! I need some urgent help with casio projector-- So on running the IRrecord or IRRecv sketch, when I press,let's say the "ON" button on the projector's remote, I get --> (also printing out out the codeLen turns out to be 20) Received NEC: 212F20DF 20 Received NEC: repeat; ignoring. But when I compile the IRSendDemo sketch with same code: projector does not seem to respond--> irsend.sendNEC('212F20DF', 20); Any idea why? I'm using about 180 ohm resistor. I believe NEC commands are sent only once.
hi.. thank you for this beautiful tutorial..Unfortunately , sending the raw codes doesnt work for me :( no idea where i m going wrong.And thats the problem with only one button on the remote.Other buttons on the SAME remote do work for me but no idea why the raw codes doesnt work for that one button!!!
I want to make a remote controller on Arduino (IRrecv+IRsend+sleep). In which it should read IR data usingtsop1738 then send the desired IR data using IR transmit led. And when no data is received it should go to deep sleep to conserve battery. Because I want it to run on 3v lithium coin cell. I found many codes on the internet using Irsend + sleep or just IRsend + IRrecv. But not a combination of all the three. If you make the code for the same it will be helpful. Need for this project=== some channel nos on my tv are 4 digits. It is very difficult to press 4 keys. So my plan is to press only 1 key tv remote and my controller will send desired 4 distinct key codes to tv by sending cancel command to my 1st command press by me on my tv remote
I forgot to say that the same code works correctly for samsung led tv. Of course, replacing void loop () with this:
void loop() {
delay(10000);
for (int i = 0; i < 3; i++) {
irsend.sendSAMSUNG(0xE0E040BF, 32); //SAMSUNG TV LED on/off (capturado con IRrecvDumpV2.ino)
delay(40);
}
delay(10000);
}
But how do you use two or more individual buttons?
Great set of Video's, Arduino 1. When are you going to make Chapter 14 video?
Hello Jason... I recorded the raw code for my TV. These raw codes seem to vary over a range of values.When i send these raw values it does sometime switches on the TV but most of the times it doesnt!! However for other buttons apart from the power on and off i get a fixed set of values and it does work properly for them.I wonder what is it with the power button..
Hello Jason, any news on the new updates? I'm looking forward to do the same thing, but to send the commands via RF and not IR..hope to see the new parts soon! Regards.
how do i send binary remote codes via rf on 433? on a radiohead compatable tx moduale on an esp?
hi there Jason,
thanks for the ausome vid. hope it will work for the AC im trying to control.
1,what model make remote/ device is this working on?
i assume the #define RAWBUF 100 in IRremote should need be changed (increased) depending on the device -> Samsung AC is known for longer IR code.
2, must an IR LED be used (can an arduino IR transmitter be used with this), thanks?
Thank for sharing! One problem - this works FLAWLESSLY on my Arduino UNO but when I load the exact sketch on my Yun, nothing. No IR is being sent whatsoever. Triple checked my connections - any ideas?
Your the boss your sketch work! Thanks dude you help a lot !
how to covert Raw format to Pronto any easy method would be appreciated
Well, Thanks this is helping me on the way.
Next I like to know, is it possible to send the commands over wire to the dataPin of the IR receiver.
Yes i want to remove the IR part of it.
What if the encoding is uknown from the IR receiver? I'm trying to control 2 AC's by playing the received commands. The split unit is working but the cassette doesnt even though the remote is the same :\
You are my HERO !!!! GREAT VIDEO !!
hi... I am trying to clone a Daikin air conditioner remote with Arduino. I have followed your procedure but it seems not to work
where is the next chapter?
how does arduino know to wich pin output the signal ?
Thats a really very extremely good question
Try some of the timer pins
you can specify a pin at the setup part of the program.
remember that it needs to be a pin labeled as PWD(~)on the Arduino
Hi,could i ask a question, if i need to send more than 27 amounts command at raw format, and that arduino uno will show not enought memory alert, is that possible way to solve it ?
THX a lot :)
+韋凡陳
You should create a function and initialize this variables locally inside this function. If you declare it global as he did in this video, you are gonna need an Arduino board like Mega because of th memory.
Ah! FYI, if you're using a YUN, the default output pin will be 13, not 3. Cheers.
Hello, I am problem. I need send RAW(100,38), but is not working. This signal is from air samsung.
hi who can I verify the ir led is sending the code??
you are so good!
Excellent video, i cant wait to try it out. I tried to copy a Sony projector remote and got the Hex codes, but it was UIR..or Unknown format, i tried sending to the proj with no success. Hopefully when i try this out i'll be able to send commands the proj will register
Hi, i'm from Argentina, so, sorry for my english. This 2 chapters were amazing, you helped me a lot! Thank You!
I want to know a thing, I have the IR transmitter and i need to know where to put it.
The code comments at the beginning says that the IR LED must be connected to Arduino PWM Pin 3. I wish to know if I have to put the IR LED with a Resistor (and what ohms) or It can be connected directly to pin 3.
Is there a way to change the pin in which i have to connect the IR LED?
Thanks a Lot! :)
Hey, great video! I need some urgent help with casio projector--
So on running the IRrecord or IRRecv sketch, when I press,let's say the "ON" button on the projector's remote, I get -->
(also printing out out the codeLen turns out to be 20)
Received NEC: 212F20DF
20
Received NEC: repeat; ignoring.
But when I compile the IRSendDemo sketch with same code: projector does not seem to respond-->
irsend.sendNEC('212F20DF', 20);
Any idea why? I'm using about 180 ohm resistor.
I believe NEC commands are sent only once.
change that '212F20DF' into this "212F20DF"
I am not able to control my ac even after performing all the steps you told in ur videos
hi.. thank you for this beautiful tutorial..Unfortunately , sending the raw codes doesnt work for me :( no idea where i m going wrong.And thats the problem with only one button on the remote.Other buttons on the SAME remote do work for me but no idea why the raw codes doesnt work for that one button!!!
GREAT VIDEO !!
thank you so much dude, it finally worked.
why raw codes?
why not exa?
can I send prontoedit hex command from it.......? also I want to know that above-given code can run any IR command in the world ..... ;)
I want to make a remote controller on Arduino (IRrecv+IRsend+sleep). In which it should read IR data usingtsop1738 then send the desired IR data using IR transmit led. And when no data is received it should go to deep sleep to conserve battery. Because I want it to run on 3v lithium coin cell. I found many codes on the internet using Irsend + sleep or just IRsend + IRrecv. But not a combination of all the three. If you make the code for the same it will be helpful. Need for this project=== some channel nos on my tv are 4 digits. It is very difficult to press 4 keys. So my plan is to press only 1 key tv remote and my controller will send desired 4 distinct key codes to tv by sending cancel command to my 1st command press by me on my tv remote
savior
Nice video, but it doesnt work with my AC (sharp) ,, anyone can help ,, I appreciate :)
boi your hiarlin go back to da civil war, get ur self a new boiiiii