1304 Arduino Chapter13 Sending Raw IR codes to comsumer products

Поділитися
Вставка
  • Опубліковано 27 гру 2024

КОМЕНТАРІ • 42

  • @electrik77
    @electrik77 9 років тому +3

    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);
    }

  • @tccosmin
    @tccosmin 11 років тому

    But how do you use two or more individual buttons?

  • @KR0tG5fk
    @KR0tG5fk 9 років тому +1

    Great set of Video's, Arduino 1. When are you going to make Chapter 14 video?

  • @Chaitanyawaichal
    @Chaitanyawaichal 11 років тому

    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..

  • @TamasRedler
    @TamasRedler 11 років тому

    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.

  • @JNET_Reloaded
    @JNET_Reloaded 6 років тому

    how do i send binary remote codes via rf on 433? on a radiohead compatable tx moduale on an esp?

  • @Olivia-ko5wl
    @Olivia-ko5wl 11 років тому +1

    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?

  • @stantonadcock4537
    @stantonadcock4537 10 років тому

    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?

  • @cristianpal93
    @cristianpal93 10 років тому

    Your the boss your sketch work! Thanks dude you help a lot !

  • @kamalahmad8512
    @kamalahmad8512 6 років тому

    how to covert Raw format to Pronto any easy method would be appreciated

  • @fritshuikeshoven
    @fritshuikeshoven 9 років тому

    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.

  • @beardedsawyer6322
    @beardedsawyer6322 7 років тому

    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 :\

  • @guitarans
    @guitarans 9 років тому

    You are my HERO !!!! GREAT VIDEO !!

  • @asantewaabremang
    @asantewaabremang 7 років тому

    hi... I am trying to clone a Daikin air conditioner remote with Arduino. I have followed your procedure but it seems not to work

  • @vitorlube26
    @vitorlube26 10 років тому

    where is the next chapter?

  • @andrearossi9702
    @andrearossi9702 7 років тому +2

    how does arduino know to wich pin output the signal ?

    • @Wilson84KS
      @Wilson84KS 7 років тому

      Thats a really very extremely good question

    • @AlexM19875
      @AlexM19875 7 років тому

      Try some of the timer pins

    • @eriklundstedt7781
      @eriklundstedt7781 7 років тому +1

      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

  • @vannesys2024
    @vannesys2024 9 років тому +1

    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 :)

    • @dynnodurco7820
      @dynnodurco7820 9 років тому

      +韋凡陳
      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.

  • @stantonadcock4537
    @stantonadcock4537 10 років тому

    Ah! FYI, if you're using a YUN, the default output pin will be 13, not 3. Cheers.

  • @d.o.cardozo8932
    @d.o.cardozo8932 8 років тому +1

    Hello, I am problem. I need send RAW(100,38), but is not working. This signal is from air samsung.

  • @irenecostantini9494
    @irenecostantini9494 9 років тому

    hi who can I verify the ir led is sending the code??

  • @BESTofAlp
    @BESTofAlp 9 років тому

    you are so good!

  • @nuteronix5799
    @nuteronix5799 6 років тому

    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

  • @caligrafistico
    @caligrafistico 11 років тому

    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! :)

  • @mudithead
    @mudithead 10 років тому

    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.

  • @vaibhavkhandelwal5500
    @vaibhavkhandelwal5500 7 років тому

    I am not able to control my ac even after performing all the steps you told in ur videos

  • @Chaitanyawaichal
    @Chaitanyawaichal 11 років тому

    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!!!

  • @enisgerbeshi9266
    @enisgerbeshi9266 8 років тому

    GREAT VIDEO !!

  • @Yautjaprime
    @Yautjaprime 8 років тому

    thank you so much dude, it finally worked.

  • @nexus0220
    @nexus0220 7 років тому

    why raw codes?
    why not exa?

  • @nirmalkushwah2268
    @nirmalkushwah2268 7 років тому

    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 ..... ;)

  • @Su67377s
    @Su67377s 5 років тому

    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

  • @GuiGingras
    @GuiGingras 6 років тому

    savior

  • @mahmoudabulwafa3508
    @mahmoudabulwafa3508 8 років тому

    Nice video, but it doesnt work with my AC (sharp) ,, anyone can help ,, I appreciate :)

  • @NicklBocker-zq3ke
    @NicklBocker-zq3ke 7 років тому

    boi your hiarlin go back to da civil war, get ur self a new boiiiii