Это видео недоступно.
Сожалеем об этом.

How to Use an IR Remote in Tinkercad

Поделиться
HTML-код
  • Опубликовано: 15 авг 2024
  • This video will help you use an IR Remote to control components like LEDs, Servos, and DC motors. You can find the links for the code and library below.
    Link to my Tinkercad Circuit:
    www.tinkercad....
    Link to the Library:
    github.com/z3t...

Комментарии • 26

  • @mr.w5179
    @mr.w5179 Год назад +8

    Doesn't work the only code the remote sends is FFFFFFFFF.

  • @harry-ie5xd
    @harry-ie5xd 3 месяца назад +3

    code that works in 2024:
    #include
    const int rcvPin=11;
    IRrecv irrecv(rcvPin);
    decode_results results;
    void setup()
    {
    Serial.begin(9600);
    irrecv.enableIRIn(); // Start the receiver
    }
    void loop() {

    if(IrReceiver.decode()) {
    auto value= IrReceiver.decodedIRData.decodedRawData;
    Serial.println(value, HEX);
    }
    IrReceiver.resume(); // Receive the next value
    delay(100);
    }

  • @mr.cashmeout1870
    @mr.cashmeout1870 3 года назад +15

    #include
    int RECV_PIN = 11;
    IRrecv irrecv(RECV_PIN);
    decode_results results;
    void setup()
    {
    Serial.begin(9600);
    irrecv.resume(); // Receive the next value
    }
    void loop() {
    if (irrecv.decode(results)) {
    Serial.printIn(results.value, HEX);
    irrecv.resume();
    }
    delay(100);
    }

  • @primevideos3984
    @primevideos3984 Год назад +4

    Nowadays the remote control only displays FFFFFF on any button you press, is this error just me?

    • @squidi3189
      @squidi3189 Год назад

      no, same here

    • @primevideos3984
      @primevideos3984 Год назад

      @@squidi3189 I solved my problem by downgrading the version of IRremote.h, try using version 3.6.0, version 4.1.2 simply doesn't work for me, going back to the old version was perfect!

    • @Dell-ol6hb
      @Dell-ol6hb Год назад

      yea same idk what the hell is going on

  • @ToastyMcToasty
    @ToastyMcToasty 6 лет назад +2

    10/10 Video Would Watch Again, Thanks!

  • @maheshwaransivalogamnatara9341
    @maheshwaransivalogamnatara9341 4 года назад +2

    all are ok but where do we find the code

  • @fabianarevalo9898
    @fabianarevalo9898 3 года назад +1

    Excelente, gracias

  • @epieepede5222
    @epieepede5222 2 года назад

    Am great full of what I saw, please I wish to ask which app did u use for connecting?

  • @roaming740
    @roaming740 2 года назад

    what does it look like irl?

  • @ankurverma8792
    @ankurverma8792 3 года назад

    How to rotate Arduino

  • @MatheusAlbuquerque-i9y
    @MatheusAlbuquerque-i9y Год назад

    Thanks

  • @muhammadfajararifki2098
    @muhammadfajararifki2098 3 года назад

    Thank bro, 👍👍👍

  • @gold3ngam3s84
    @gold3ngam3s84 3 года назад

    I have an issue whenever I try to get the hex value from the decode it gives me a 0 instead of the FF#####, please help!

  • @richardbalog
    @richardbalog 3 года назад

    Thanks

  • @vitorferreira8782
    @vitorferreira8782 6 лет назад

    NICE

  • @charlesklein7232
    @charlesklein7232 5 лет назад

    its out of focus view it before downloading. cannot read much.

  • @robertraafat413
    @robertraafat413 3 года назад

  • @michaelfiedler5707
    @michaelfiedler5707 6 лет назад

    Thanks