Arduino Tutorial 31- How to Use the Infrared (IR) Remote

  Рет қаралды 115,468

Enjoy Mechatronics

Enjoy Mechatronics

Күн бұрын

Let's see how to add an Infrared remote to your Arduino projects. This lesson helps you to get started with this simple and awesome IR technology.
●ESP32 IR Control: • ESP32 IR Receiver: Con...
● Playlist Link: bit.ly/2VT2ZAN
● Arduino IDE: www.arduino.cc...
Best Arduino Starter Kit 👇
✅ amzn.to/3TUro3o
--------------------------------------------------------------------
► Get Your First Arduino Starter Kit 👇:
👉 amzn.to/3VfGNM1
👉 amzn.to/3L7gPpw
--------------------------------------------------------------------
✅ My current Productivity Setup 👇:
● Gaming Headset: amzn.to/3HyXgp2
● Gaming Mouse: amzn.to/3ni4Ygp
● Best Webcam: amzn.to/44pVUqw
● Keyboard: amzn.to/3ALXB3M
● GPU: amzn.to/42mylNt
● CPU: amzn.to/44lOBjs
--------------------------------------------------------------------
FOLLOW ME:
● Github Projects: github.com/Enj...
♥ Never Click This! bit.ly/3jvI8g6
● Facebook: / enjoymechatronics
--------------------------------------------------------------------
► All content by Enjoy Mechatronics is 100% free. I believe that education should be freely available to everyone.

Пікірлер: 162
@mrfuzzball1015
@mrfuzzball1015 2 ай бұрын
Hi i am not sure if u can help but for some reason when i use try and do the hexadecimal stuff only some values get read and if so its just 0 on the serial monitor
@cabbagelover89
@cabbagelover89 Ай бұрын
I am also having this problem.
@windowcleaner-t6u
@windowcleaner-t6u Ай бұрын
Same
@diaxx9999
@diaxx9999 10 ай бұрын
here is the code for lazy ones : #include IRrecv IR(3); int ledPin = 8; void setup( ) { // put your setup code here, to run once: IR.enableIRIn( ); pinMode(ledPin, OUTPUT); Serial.begin(9600); } void loop() { // put your main code here, to run repeatedly: if(IR.decode( ) ){ Serial.println(IR.decodedIRData.decodedRawData, HEX); if(IR.decodedIRData.decodedRawData == 0xEA15FF00){ digitalWrite(ledPin, HIGH); } if(IR.decodedIRData.decodedRawData == 0xF807FF00){ digitalWrite(ledPin, LOW); } delay(1500); IR.resume( ); } }
@EnjoyMechatronics
@EnjoyMechatronics 10 ай бұрын
Thanks 😊
@AllanWallsPhotography
@AllanWallsPhotography 8 ай бұрын
Another excellent video presentation. You manage to include every project detail and give the information clearly and succinctly, without a wasted word. Great job!
@EnjoyMechatronics
@EnjoyMechatronics 8 ай бұрын
Glad it was helpful!
@minhkhoanguyen1407
@minhkhoanguyen1407 Жыл бұрын
can i borrow your code please
@yasinkotere6578
@yasinkotere6578 Жыл бұрын
I kiss your heart, brother. I have been trying to set up this damn remote for about two hours and no complicated approach or solution from the Internet seemed help, except for your coherent, simple, and logical code. May your problems go away like mine.
@ernestorodriguez4742
@ernestorodriguez4742 9 ай бұрын
Very good. This method works. It did not work with other method always giving FFFFFF. This code worked for me with version 3.5.2 #include IRrecv IR(3); void setup() { // put your setup code here, to run once: IR.enableIRIn(); // Cambiado de enableIRIN a enableIRIn Serial.begin(9600); } void loop() { // put your main code here, to run repeatedly: if (IR.decode()) { // Cambiado de If a if Serial.println(IR.decodedIRData.decodedRawData, HEX); // Cambiado de IT.decodeIRData a IR.decodedIRData delay(300); IR.resume(); } }
@williampicca5138
@williampicca5138 2 жыл бұрын
Thank you so much. It's quite something when I spend hours trying to figure out how to set up my own IR Remote, but nothing works. Then I came across your video, followed exactly what you did, and it ended up working! Once again, thank you!!!!
@aboudyx
@aboudyx Жыл бұрын
can you pleas copy the codes i need it why you do that the Ir reciver senser flame up😥
@二一-m4b
@二一-m4b Жыл бұрын
you are the best 👍 i search many tutorials , no one works finally , i watch this this really works just look at the way you code this can tell that you totally know these
@EnjoyMechatronics
@EnjoyMechatronics Жыл бұрын
Glad I could help
@lovrosibenik1070
@lovrosibenik1070 4 ай бұрын
Can someone help me with my project? My plan is to control servo with IR remote control do rotate it and to control DC to speed it up or slow it down to use it like a fan.
@siAppDesign
@siAppDesign 2 жыл бұрын
Your video help me to make it work, thank you. the fact that you also mentionned the library version really help. I guess many people has trouble with it because there is incompatibility between the code suggest and the library version currently install on their system
@EnjoyMechatronics
@EnjoyMechatronics 2 жыл бұрын
That's absolutely right ✅
@Voytako
@Voytako 19 күн бұрын
It didnt work and my resistor and the sensor is fryed, and it all good conected so dis like
@Anchannel944
@Anchannel944 6 ай бұрын
HI, Thanks for the vid. I've tried 3 different remotes and recvers, but every time I get FFFFFFFF, and I don't know why. Please help. Thanks.
@TacoAlligator
@TacoAlligator 5 ай бұрын
Make sure your monitor is set to 9600 baud otherwise it might show up weird
@insanity8692
@insanity8692 10 күн бұрын
Best Tutorial i could find on KZbin. Many Thanks!!!
@EnjoyMechatronics
@EnjoyMechatronics 10 күн бұрын
Wow, thanks!
@AgentEmerald0028
@AgentEmerald0028 Жыл бұрын
can you add a file of this code so that we don't need to copy literally everything you've done?
@oficinarscarservice
@oficinarscarservice Жыл бұрын
Fantástico!! Ganhou um seguidor!!! Estava com dificuldade em fazer isto funcionar com outros sketchs, qualquer tecla pressionada sempre retornava 0FFFFFFF (delay configurado era de 100 ms, será isso?). Seu método foi o único que funcionou. Muito obrigado.
@ernestorodriguez4742
@ernestorodriguez4742 9 ай бұрын
obrigado
@alexpaul8942
@alexpaul8942 3 ай бұрын
Hey, I’m having a problem with the code. I am writing it for a passive buzzer instead of an LED, and i have two if statements. i have the same code except for a tone() function. i will press one button and then it will never turn on again.
@chickencow1598
@chickencow1598 Ай бұрын
mine says 0 in the serial monitor can someone help
@mihmih-c8z
@mihmih-c8z Ай бұрын
tf armin arlert is making code library
@scorpionesc9999
@scorpionesc9999 8 ай бұрын
first to say , your video is really cool, most simple and clear, congratulation for that. i enjoy to read out the codes from the remote, but unfortunally i cant find your libary today. my IDE is 2.0.2 and thre is no matching libary you use. used HW is same. do you have an idea to get your good libary into mine IDE?
@EduTechNeer
@EduTechNeer Жыл бұрын
Thanks man. I was really stuck on this lesson for the IR remote. I think I got it nailed down now.
@EnjoyMechatronics
@EnjoyMechatronics Жыл бұрын
Glad it helped!
@stevielut8596
@stevielut8596 6 ай бұрын
I want to ask you , can you tell me where you get that like code like that "decode "IR " , I mean where , I have been. searching it , please reply , thanks
@justanothererd01
@justanothererd01 Жыл бұрын
Cool tutorial! One question, what is the name of the song from your intro? It's BANGIN!!!!
@TacoAlligator
@TacoAlligator 5 ай бұрын
In your serial monitor, make sure to set it to 9600 baud at the bottom otherwise you might end up with something odd showing up
@kudakwashemudzingwa8660
@kudakwashemudzingwa8660 Жыл бұрын
Hie thanks for the straight forward tutorial but am having a problem with the HEX of each remote button, when l press the same button l get a different HEX number , what could be the problem???
@weizhu716
@weizhu716 Жыл бұрын
check your library , install the newest one
@welcometochiles6156
@welcometochiles6156 Жыл бұрын
Could be the library like weizhu said, but I have another theory since I'm on the latest and have the same problem unless I blast the remote right into the receiver: I think any interference with the receiver messes with how the receiver decodes the remote, thus different results.
@spinningcube128
@spinningcube128 Жыл бұрын
CODE: #include IRrecv IR(2); int led = 8; void setup() { // put your setup code here, to run once: IR.enableIRIn(); pinMode(led, OUTPUT); Serial.begin(9600); } void loop() { // put your main code here, to run repeatedly: if(IR.decode()){ Serial.println(IR.decodedIRData.decodedRawData, HEX); if (IR.decodedIRData.decodedRawData == 0xE916FF00){ digitalWrite(led, HIGH); if (IR.decodedIRData.decodedRawData == 0xE619FF00){ digitalWrite(led, LOW); } delay(1500); IR.resume(); } } }
@EnjoyMechatronics
@EnjoyMechatronics Жыл бұрын
Thanks man
@Imrooot
@Imrooot Жыл бұрын
Worked for me, thank you!
@EnjoyMechatronics
@EnjoyMechatronics Жыл бұрын
Great!
@hungtranvan6298
@hungtranvan6298 11 ай бұрын
Hi everybody. I'm currently having a problem and need your help: When receiving the remote's external signal, the VS1838B module only displays 0xFFFFFFFF How to fix it? Thank you Sorry that my English is quite bad
@joehighpockets
@joehighpockets 10 ай бұрын
When I use the cheap remote I also get 0xFFFFFFFF but when I use a XFINITY TV remote I get different codes.
@zeranimator8500
@zeranimator8500 Жыл бұрын
If i want to apply it at real lights with high voltage electric power can i directly connect them or should i use a relay for that?
@EnjoyMechatronics
@EnjoyMechatronics Жыл бұрын
No, you have to use a relay module
@kolyaayrapetyan7048
@kolyaayrapetyan7048 Жыл бұрын
Does not work. Very disturbing delay And without it it doesn't work. Please tell me what can be done
@FictionHubZA
@FictionHubZA 7 ай бұрын
Try reducing the delay. To 1000 or less than that.
@FictionHubZA
@FictionHubZA 7 ай бұрын
Wait. Try increasing the delay. Whichever works best.
@Survivval_tinkerer
@Survivval_tinkerer 2 жыл бұрын
hello that code doesn't work, we throw it out that it has a problem with: IR.enableIRIn (); what should I do?
@EnjoyMechatronics
@EnjoyMechatronics 2 жыл бұрын
Check out the lRremote library
@aaronswank
@aaronswank Жыл бұрын
Im not getting a HEX code in the serial monitor, just a simple two digit number. any help?
@Guus8666
@Guus8666 Жыл бұрын
help me pls my serial monitor doesn't show anything
@EnjoyMechatronics
@EnjoyMechatronics Жыл бұрын
Select the same baud rate 9600 from the serial monitor
@Guus8666
@Guus8666 Жыл бұрын
@@EnjoyMechatronics I have that but it doesn’t work, maybe the receiver burned out?
@malikthetalentmaker6001
@malikthetalentmaker6001 2 жыл бұрын
Extreeeeeme videeeeeo
@old_minecraft_door
@old_minecraft_door 11 күн бұрын
another hero saves the day
@ListVerse-vv7bt
@ListVerse-vv7bt 10 ай бұрын
Are there any mini remotes like that in which you can program the IR codes?
@NurvnUWU
@NurvnUWU 9 ай бұрын
thank chu :3 and chur voice sounds cute ^W^
@TodoInventosTV
@TodoInventosTV Жыл бұрын
Buenoa Buenaso #todoinventostv Realy good
@fatosyigit7582
@fatosyigit7582 5 ай бұрын
Çok teşekkür ederim.işime çok yaradı
@anushaanu5185
@anushaanu5185 4 ай бұрын
I have written your code and wired everything correctly but this is not working for me
@minskie
@minskie 5 ай бұрын
I have written your code and wired everything correctly but this not working for me
@15DurangoRT
@15DurangoRT 2 ай бұрын
Me no speak Japanese!
@Genezis-88
@Genezis-88 Жыл бұрын
Pls create an RF 433mHz version 🙏🏻
@jafararif931
@jafararif931 Жыл бұрын
Hello, thank you so much for the video but the code doesn't seem to work, I'm not very good at arduino and I'm doing it for a project
@EnjoyMechatronics
@EnjoyMechatronics Жыл бұрын
You could check out this new video kzbin.info/www/bejne/mYCUq6Cnns-doaM
@bauzel5890
@bauzel5890 Жыл бұрын
Finally i found the Code for HW477 that works. Many examples use the old code that doenst work properly with hw477 and give random output. Thank you very much.
@EnjoyMechatronics
@EnjoyMechatronics Жыл бұрын
Glad I could help
@JOSEPHCATUBIG26
@JOSEPHCATUBIG26 18 күн бұрын
Very good 👍
@devyanshgarg6156
@devyanshgarg6156 6 ай бұрын
Very well explained sir. Clear, simple and concise code. Thank you
@EnjoyMechatronics
@EnjoyMechatronics 6 ай бұрын
So nice of you
@yari3061
@yari3061 Жыл бұрын
THANK YOU SO MUCH. i have a lot of problems decodifing my ir control with other methods
@EnjoyMechatronics
@EnjoyMechatronics Жыл бұрын
Did it work?
@india_venom209
@india_venom209 10 ай бұрын
Thank you so much mate .I have watched lot of videos nothing had worked for me. You saved my life dude, I have a project on this.
@EnjoyMechatronics
@EnjoyMechatronics 10 ай бұрын
Glad I could help
@DarvenCaze
@DarvenCaze 10 ай бұрын
it's great but it didn't work for me
@EnjoyMechatronics
@EnjoyMechatronics 10 ай бұрын
What happened?
@abishek_raja_01
@abishek_raja_01 11 ай бұрын
I have one doubt. Is IR sensor and IR reciever is same or different?
@EnjoyMechatronics
@EnjoyMechatronics 11 ай бұрын
Yeah, there is a difference IR sensor is a broad term that encompasses sensors capable of both emitting and receiving IR radiation, while an IR receiver is a specialized sensor designed to receive and decode IR signals, commonly used in remote control applications.
@lambda.plays.game_
@lambda.plays.game_ 7 ай бұрын
where are double sided jumper wire
@michalb.3562
@michalb.3562 Жыл бұрын
Thank you for your tutorials. Your arduino tutorials are very useful and I like the fact that you mention exactly which library to use, because they can get confusing.
@EnjoyMechatronics
@EnjoyMechatronics Жыл бұрын
Glad you like them!
@bimapgri2227
@bimapgri2227 Жыл бұрын
Tutorial anda sangat membantu terikasih
@jsn7123
@jsn7123 7 ай бұрын
Straight to the point, very well done!
@prasadweerasingha7335
@prasadweerasingha7335 Жыл бұрын
First thanks for sharing your knowledge. When I'm doing this, I faced some issue. I'm also have the same as your remote. (Same size same brand). But every key returns same value like FFFFFFFF. What could be the issue bro? 🤔
@EnjoyMechatronics
@EnjoyMechatronics Жыл бұрын
You may need to update the library Or check out my new video kzbin.info/www/bejne/mYCUq6Cnns-doaM
@prasadweerasingha7335
@prasadweerasingha7335 Жыл бұрын
@@EnjoyMechatronics Library version is 4.1.1 and that is the latest.
@shakhobiddinnakiev6767
@shakhobiddinnakiev6767 Жыл бұрын
Hello, did you find the solution ? I have the same problem too(((((((((
@shakhobiddinnakiev6767
@shakhobiddinnakiev6767 Жыл бұрын
U know, it just worked for me by chance i think, i deleted my latest library 4.1.2 and installed 3.5.2 and rebooted Aduino several times))) it is working , i don't know what to say more))
@Tanlee29
@Tanlee29 7 ай бұрын
Thanks you, I spent many time to set up this system but it didn't work but today i find this video despite simple code but it work very well, again thanks you very much!
@GuilhermeMendes246
@GuilhermeMendes246 Жыл бұрын
how can i get the pattern or Pronto Hex Code?
@respectultimate28
@respectultimate28 Жыл бұрын
why nothing in serial monitor
@EnjoyMechatronics
@EnjoyMechatronics Жыл бұрын
Select the same baud rate 9600
@Guus8666
@Guus8666 Жыл бұрын
@@EnjoyMechatronics I have that but It doesn't work
@ShrekBigscary
@ShrekBigscary Жыл бұрын
thanks man your a legend
@EnjoyMechatronics
@EnjoyMechatronics Жыл бұрын
Any time!
@kimkeoelectrical
@kimkeoelectrical 5 ай бұрын
Thank you for share good video I like this video.
@EnjoyMechatronics
@EnjoyMechatronics 5 ай бұрын
Glad you enjoyed it
@johnvandenberg2445
@johnvandenberg2445 Жыл бұрын
Excellent and thank you for this great video
@EnjoyMechatronics
@EnjoyMechatronics Жыл бұрын
Glad you enjoyed it
@arrieldongo6619
@arrieldongo6619 2 жыл бұрын
Thankkkkkkks, your vidéo is very very Good 😇😇😇😇😇😇😇😇😇😇😇😇😇
@EnjoyMechatronics
@EnjoyMechatronics 2 жыл бұрын
No worries 👍
@FunnyToker
@FunnyToker Жыл бұрын
I tried it. super. thanks for the video
@EnjoyMechatronics
@EnjoyMechatronics Жыл бұрын
No problem 😊
@Aqidshah
@Aqidshah Жыл бұрын
I need your urgent help If i press button of remote led should glow for 10 seconds and within these 10 seconds if we press again the same button led should be still glowing for again 10 sec this loop should continue until no button is pressed Please tell me how can I do?
@EnjoyMechatronics
@EnjoyMechatronics Жыл бұрын
Use millis() command. Sorry, I haven't created a video about it yet.
@Slndr_Salam
@Slndr_Salam 10 ай бұрын
thanks broooo
@daankruger1233
@daankruger1233 Жыл бұрын
Can Someone please give me the code it wont work for me i think i did something wrong:(
@shakhobiddinnakiev6767
@shakhobiddinnakiev6767 Жыл бұрын
U know, it just worked for me by chance i think, i deleted my latest library 4.1.2 and installed 3.5.2 and rebooted Aduino several times))) it is working , i don't know what to say more))
@shakhobiddinnakiev6767
@shakhobiddinnakiev6767 Жыл бұрын
I changed the code a little too, I forgot to tell))
@nathanfenoseff7751
@nathanfenoseff7751 Жыл бұрын
@@shakhobiddinnakiev6767 Can you send the code so I can copy and paste it please?
@shakhobiddinnakiev6767
@shakhobiddinnakiev6767 Жыл бұрын
@@nathanfenoseff7751 #include IRrecv IR(9); decode.results result; void setup() { // put your setup code here, to run once: IR.enableIRIn(); Serial.begin(9600); } void loop() { // put your main code here, to run repeatedly: if (IR.decode()){ Serial.println(results.value, HEX); delay(1500); IR.resume(); } }
@nathanfenoseff7751
@nathanfenoseff7751 Жыл бұрын
@@shakhobiddinnakiev6767 ty
@HamBoga123
@HamBoga123 6 ай бұрын
OMG FINALLY IVE BEEN LOOKING EVERYWHERE FOR A VIDEO THAT WORKS AND THIS IS THE ONLY ONE IVE FOUND THANK YOU
@iviyanStoyanov
@iviyanStoyanov 2 жыл бұрын
really good video thank you
@EnjoyMechatronics
@EnjoyMechatronics 2 жыл бұрын
I appreciate that
@bimapgri2227
@bimapgri2227 Жыл бұрын
Your tutorial is very helpful thank you
@EnjoyMechatronics
@EnjoyMechatronics Жыл бұрын
Glad to hear that
@SEEMAKUMARI-qf3qk
@SEEMAKUMARI-qf3qk Жыл бұрын
Yes I also agree
@eduf8443
@eduf8443 11 ай бұрын
God bless you man, Thanks.
@EnjoyMechatronics
@EnjoyMechatronics 11 ай бұрын
You too!
@IlyesCodes
@IlyesCodes 2 жыл бұрын
im subscribing RN
@yt440volts
@yt440volts Жыл бұрын
Very nice, HELPED me a lot thanks
@EnjoyMechatronics
@EnjoyMechatronics Жыл бұрын
I’m so glad to hear that. Thank you so much.
@E-4-elecTronic
@E-4-elecTronic Жыл бұрын
I am getting same code for all buttons
@RixtronixLAB
@RixtronixLAB Жыл бұрын
Nice video, thanks :)
@EnjoyMechatronics
@EnjoyMechatronics Жыл бұрын
Glad you liked it!
@vijaysulakhe5605
@vijaysulakhe5605 5 ай бұрын
Excellent...many thanks.
@EnjoyMechatronics
@EnjoyMechatronics 5 ай бұрын
So nice of you
@akramelkhalifi8165
@akramelkhalifi8165 Жыл бұрын
very interesting, ty !
@EnjoyMechatronics
@EnjoyMechatronics Жыл бұрын
Glad you think so!
@kumaraswamy2817
@kumaraswamy2817 8 ай бұрын
Good idea,
@EnjoyMechatronics
@EnjoyMechatronics 8 ай бұрын
Many many thanks
@meddiys6171
@meddiys6171 11 ай бұрын
Excellent.
@EnjoyMechatronics
@EnjoyMechatronics 11 ай бұрын
Thank you! Cheers!
@pshtiwankarim7616
@pshtiwankarim7616 2 жыл бұрын
just in case it's a good tutorial video.
@omenechris4698
@omenechris4698 2 жыл бұрын
Just a word "The BEST".
@EnjoyMechatronics
@EnjoyMechatronics 2 жыл бұрын
Thanks for your interest
@123masteryoda123
@123masteryoda123 2 жыл бұрын
Your code worked great. I've adapted it to work with a SG90 servo. I need it to move 10 points in one direction or 10 points in the other depending on what key on the remote I press. The only problem I'm having is when I hook up the servo, I get a ton of interference with the IR and it can't read the remote. Even when the servo is sitting idle, I can see numbers all over the serial monitor, and the IR flashing. When the servo is unhooked, it works great (or at least the serial monitor says it does).
@EnjoyMechatronics
@EnjoyMechatronics 2 жыл бұрын
Most probably this is a power problem, Supply the servos from power source different from the Arduino power source and make sure it has sufficient current rating. Or use the 5 volt Pin to power the servo And the 3.3 volt Pin to power the ir receiver because servos make some noise to the power source and that affects the ir receiver.
@stukkiedrol9719
@stukkiedrol9719 Жыл бұрын
@@EnjoyMechatronics You have no idea how much this comment helped me! Thank you so much!!
@EnjoyMechatronics
@EnjoyMechatronics Жыл бұрын
@@stukkiedrol9719 No worries
@Elytraz17
@Elytraz17 8 ай бұрын
I've been trying to find some code that will work, i've finally found it tysm
@IlyesCodes
@IlyesCodes 2 жыл бұрын
dude u r the best
@EnjoyMechatronics
@EnjoyMechatronics 2 жыл бұрын
Thanks
@prakashharash8380
@prakashharash8380 Жыл бұрын
HI !
@EnjoyMechatronics
@EnjoyMechatronics Жыл бұрын
Hey 👋
@prakashharash8380
@prakashharash8380 Жыл бұрын
good
@cringefds1366
@cringefds1366 2 жыл бұрын
fake
@EnjoyMechatronics
@EnjoyMechatronics 2 жыл бұрын
You are wrong
@magmagth4346
@magmagth4346 2 жыл бұрын
Many thanks 🌹🙏
@EnjoyMechatronics
@EnjoyMechatronics 2 жыл бұрын
I'm glad to hear that
@chuvalchang483
@chuvalchang483 2 жыл бұрын
Hello
@EnjoyMechatronics
@EnjoyMechatronics 2 жыл бұрын
Hi,
@Spedicaledicalshorts
@Spedicaledicalshorts Жыл бұрын
great video. Really helpful
@EnjoyMechatronics
@EnjoyMechatronics Жыл бұрын
Glad to hear it!
@jayinmi3706
@jayinmi3706 Жыл бұрын
Is there a distance away from the arduino that I should limit placement of the transmitter to? I want to place an IR transmitter near the dome light in my car to control aspects of my DSP, but I think the distance would exceed 9 feet from the Arduino to where the LED will go. Didn't know if the signal would be strong enough to go that far. Great job on the video, very easy to follow.
@EnjoyMechatronics
@EnjoyMechatronics Жыл бұрын
Thanks, man I think the maximum distance is about 10 meters.
@sahebsamratphotography
@sahebsamratphotography Жыл бұрын
I only received ffffffffff from all buttons please help 😢 R change ir sensor multiple time but same . I also change my arduino but i always get fffffffff code .. anyone please help
@shakhobiddinnakiev6767
@shakhobiddinnakiev6767 Жыл бұрын
Hello, bro, i have also the same problem !!!!(((((( didn't u find the solution??
@shakhobiddinnakiev6767
@shakhobiddinnakiev6767 Жыл бұрын
U know, it just worked for me by chance i think, i deleted my latest library 4.1.2 and installed 3.5.2 and rebooted Aduino several times))) it is working , i don't know what to say more))
Arduino Tutorial 32- Understanding and Using an 8x8 LED Matrix
11:46
Enjoy Mechatronics
Рет қаралды 12 М.
Spongebob ate Patrick 😱 #meme #spongebob #gmod
00:15
Mr. LoLo
Рет қаралды 19 МЛН
Watermelon magic box! #shorts by Leisi Crazy
00:20
Leisi Crazy
Рет қаралды 54 МЛН
How to Hack any IR Remote using arduino
11:20
Enjoy Mechatronics
Рет қаралды 15 М.
Get Started in Electronics #10 - Using the Infrared Remote and Sensor
17:53
ESP32 IR Receiver: Control Your Devices with Any Remote
8:02
Enjoy Mechatronics
Рет қаралды 32 М.
Decode any IR remote using Arduino | Easy way
6:20
Technoreview85
Рет қаралды 33 М.
The Video You Were Waiting For - Hand Gesture Control
8:23
Enjoy Mechatronics
Рет қаралды 5 М.
Recording and replaying Infrared signals from remote controls
12:53
Sensors - which one to use
17:06
Electronoobs
Рет қаралды 1,3 МЛН
Hacking a weird TV censoring device
20:59
Ben Eater
Рет қаралды 3,1 МЛН