Arduino tutorial 2- LED Blink program with code explained | How to blink an LED using Arduino |

  Рет қаралды 273,077

Tech at Home

Tech at Home

Күн бұрын

Пікірлер: 273
@DrSauravDas
@DrSauravDas 11 ай бұрын
Very good video. I showed this video to my class and instantly they became newton.
@techathome
@techathome 11 ай бұрын
Thank you ❤️ 😂
@elricbell4662
@elricbell4662 2 жыл бұрын
Thanks very much for this. As a complete newcomer to Arduino I have been able to write and edit my first simple sketch and actually understand what all the commands mean. Well done for such a well-planned tutorial.
@techathome
@techathome 2 жыл бұрын
Welcome!!
@misamiamya
@misamiamya 6 ай бұрын
thank you for the code explanation! very helpful!
@techathome
@techathome 6 ай бұрын
Welcome ❤️
@manupriya5537
@manupriya5537 3 ай бұрын
bro i am totally fresher to this concept in my clg they are giving placement training regarding IOT , but i could not understand anything today after seeing ur vd i felt happy thank u so much pls continue do more vds
@techathome
@techathome 3 ай бұрын
Thanks for the feedback♥☺ All the best!!!
@kripathankachan1782
@kripathankachan1782 3 жыл бұрын
My led is blinking ☺️☺️👍
@OVaishnaviRaut_IT
@OVaishnaviRaut_IT Жыл бұрын
😄😃😃😃😃😃
@maniyammani981
@maniyammani981 Жыл бұрын
Pro
@hanjomike6447
@hanjomike6447 7 ай бұрын
How you do it?
@ahmedal-kharusi9053
@ahmedal-kharusi9053 Жыл бұрын
Hello nice video , why you didnt do a resistor for the led so it will not burn with 5v ?
@techathome
@techathome Жыл бұрын
As I have read , pin 13 has inbuilt resistor. But it is always better to use current limiting resistor. May be it will burn, if it is ON for long time without resistor.
@nisarggaming802
@nisarggaming802 4 ай бұрын
sir in my case there is some error in uploding infact I use same code and do all as you done but my port shows two port com1& com3 .I chose both but both led to error
@techathome
@techathome 4 ай бұрын
What is the error. You can check your com port in device manager.
@theGday
@theGday Жыл бұрын
great video bro I am from software background but i always have a question about these things that how it work now i understood
@techathome
@techathome Жыл бұрын
Thank you!
@tanusrisantra7111
@tanusrisantra7111 2 жыл бұрын
Tnx u so much....I am a beginner...I can comfortably understand everything of aurdino...but it's not clear that can we make connections in every pin or only pin 7??
@techathome
@techathome 2 жыл бұрын
You can connect to any digital pin
@TechknowledgeHome
@TechknowledgeHome 2 жыл бұрын
You can use any digital pin as well as analog pins. Analog pins are more powerful pins than digital pins.
@anematrix521
@anematrix521 Жыл бұрын
im so happy i made my first led lit i only have 1 question when do i need resistors?
@techathome
@techathome Жыл бұрын
Nice!! According to what I read, pin 13 has inbuilt resistor. If using any other pins, It's better to use a resistor always.
@anematrix521
@anematrix521 Жыл бұрын
@@techathome thank you so much
@werideclub
@werideclub 2 жыл бұрын
(very new to Arduino)Starting from my requirement I need to turn on a water motor(5v) for about 2 mins after every 12 hours, basically trying to automate water pump for home garden pots when I am travelling. I feel above code will perfectly work just I need to tweak delay time, is there anything else I should consider ? any other way to do it? also can I use Arduino Nano instead of UNO? or Uno is better?(as I said new to this)
@werideclub
@werideclub 2 жыл бұрын
BTW this doesn't work any more Product Links: Arduino Uno : amzn.to/3IGPadf
@ItachiUchiha-qe5py
@ItachiUchiha-qe5py 7 ай бұрын
Is there any specific side of jumper wire(positive or negative)?
@techathome
@techathome 7 ай бұрын
No
@5084204
@5084204 Жыл бұрын
/* A simple program to sequentially turn on and turn off 5 LEDs */ int LED1 = 13; int LED2 = 12; int LED3 = 11; int LED4 = 10; int LED5 = 9; void setup() { pinMode(LED1, OUTPUT); pinMode(LED2, OUTPUT); pinMode(LED3, OUTPUT); pinMode(LED4, OUTPUT); pinMode(LED5, OUTPUT); } void loop() { digitalWrite(LED1, HIGH); // turn on LED1 delay(200); // wait for 200ms digitalWrite(LED2, HIGH); // turn on LED2 delay(200); // wait for 200ms digitalWrite(LED3, HIGH); // turn on LED3 delay(200); // wait for 200ms digitalWrite(LED4, HIGH); // turn on LED4 delay(200); // wait for 200ms digitalWrite(LED5, HIGH); // turn on LED5 delay(200); // wait for 200ms digitalWrite(LED1, LOW); // turn off LED1 delay(300); // wait for 300ms digitalWrite(LED2, LOW); // turn off LED2 delay(300); // wait for 300ms digitalWrite(LED3, LOW); // turn off LED3 delay(300); // wait for 300ms digitalWrite(LED4, LOW); // turn off LED4 delay(300); // wait for 300ms digitalWrite(LED5, LOW); // turn off LED5 delay(300); // wait for 300ms and start again } // This code is just cleaner.
@techathome
@techathome Жыл бұрын
👍
@ajithkprabhakar1
@ajithkprabhakar1 Жыл бұрын
Hi, As a newcomer, your video is very useful to me and interesting. I would like to know how to set up 4 LED's
@techathome
@techathome Жыл бұрын
Thank you Similarly declare leds to different digital pins Set the pinmode for all pins. Use digitalwrite for different pins seperately
@srirammahapatra448
@srirammahapatra448 Жыл бұрын
​@@techathome tell the pin number 's which pins are to be use
@techathome
@techathome Жыл бұрын
You can use any digital pins from 0 to 13
@ankithshetty2104
@ankithshetty2104 2 жыл бұрын
HI SIR I would like to ask can we use this as a indicator .
@techathome
@techathome 2 жыл бұрын
Yes
@tusharthakker7777
@tusharthakker7777 2 жыл бұрын
Very nicely and clearly explained
@techathome
@techathome 2 жыл бұрын
Thanks
@Arun_1008
@Arun_1008 3 жыл бұрын
Hello 😊, Please provide All Equipment link for buy it and also Code
@techathome
@techathome Жыл бұрын
Everything is in description
@dakshataramteke1838
@dakshataramteke1838 11 ай бұрын
Which jumper wire is using male to male, male to female , female to female please tell me
@techathome
@techathome 11 ай бұрын
Male to male
@shenoyhariprasad
@shenoyhariprasad Жыл бұрын
Hello Sir, could you please provide me with the purchasing link for Arduino Uno from Amazon that you used in the tutorial? The link mentioned in the tutorial description is not opening.
@techathome
@techathome Жыл бұрын
Arduino Uno: amzn.to/40qhiti
@NezukoKamado-ru2uc
@NezukoKamado-ru2uc 2 жыл бұрын
Tysm! this helped me a lot when I was required to do this project
@techathome
@techathome 2 жыл бұрын
Welcome
@adhritgupta707
@adhritgupta707 14 күн бұрын
It is showing error that compilation errror expected '}' at the end of input
@techathome
@techathome 11 күн бұрын
I think something might have changed in the code. Can you download from link in description.
@sumalatha24
@sumalatha24 Жыл бұрын
Sir I have installed arduino in Ubuntu 20.04 my port is like /dev/ttyS4 My output is showing like programmer is not responding. One more doubt as u said use digital pin for led connection if I connect 7 and running example blink program it's blinking. But when Iam using pin 4 led is not blinking
@techathome
@techathome Жыл бұрын
Regarding 1st question, I have not used Ubuntu OS anytime, so no idea how it shows for Port. If you are connecting LED to different pin, you also have to edit the pin number in the code.
@aryanraj-br5np
@aryanraj-br5np 2 жыл бұрын
Sir we know that an LED will fuse if we use 5v dc. Here in the code we are not setting up the voltage to 3.5v approx. which is normal voltage for led. So how the Arduino automatically giving correct voltage for led. Plz tell.
@Slimey3DPrinting
@Slimey3DPrinting 2 жыл бұрын
it will always gives 5v dc, so use a current limiting resistor
@mukullanje5007
@mukullanje5007 Жыл бұрын
Sir you said : longer leg= anode(+) and positive connected to digital pin and ;shorter leg = cathode (-) which is connected to ground but in this video you connected vice versa
@techathome
@techathome Жыл бұрын
No, I have connected Longer one(+ve) to digital pin only, and shorter one to GND.
@poojasureka1760
@poojasureka1760 Жыл бұрын
Why have you connected led 1 to 7 can it be connected to any other number in the digital section
@techathome
@techathome Жыл бұрын
Yes you can connect to any of the digital pins, But declare correctly in the code.
@RAMKUMAR-eb1kq
@RAMKUMAR-eb1kq 5 ай бұрын
what is the wire name connected from aurdino to the system
@techathome
@techathome 5 ай бұрын
Usb A to B cable
@govindkatyura7485
@govindkatyura7485 2 жыл бұрын
What's the use of resistor? I don't know why and where to use them
@techathome
@techathome 2 жыл бұрын
That is used as current limiting resistor Usually LED need very less current, if you don't use resistor, LED can burn after using for more time . But I have heard pin 13 has inbuilt resistor. U can use with LED, if you are connecting to any other pin except 13.
@WebDepthMviewsyearsago
@WebDepthMviewsyearsago 3 жыл бұрын
#define LED 13 void setup() { pinMode(LED, OUTPUT); } void loop() { digitalWrite(LED, HIGH); delay(1000); digitalWrite (LED, LOW); delay (1000); }
@ananyarajansvlogs9651
@ananyarajansvlogs9651 Жыл бұрын
not working , my port is not selecting
@techathome
@techathome Жыл бұрын
Which type of Arduino are u using, Ch340 smd chip or the Dip IC one?
@nileshnakade7470
@nileshnakade7470 Жыл бұрын
Sir, would you plz make video on lcd, ph and waterlevel sensor
@techathome
@techathome Жыл бұрын
LCD part 1 : kzbin.info/www/bejne/nKqvYptsZ7Z7gNU LCD part 2 : kzbin.info/www/bejne/gqrYqpWZpLN4qdk Other sensor, will make soon
@usmanbeacon1769
@usmanbeacon1769 3 жыл бұрын
How can i give input from pc to Arduino for led on or off by command line?? Or any other method??
@techathome
@techathome Жыл бұрын
Refer this : kzbin.info/www/bejne/q4WbXnuGgrhkmbc Instead of bluetooth module , you can send value from serial monitor
@techeducation1463
@techeducation1463 2 жыл бұрын
how can we change duration of time ?
@techathome
@techathome 2 жыл бұрын
Change the value inside delay function
@durgasaiharshithalanki4111
@durgasaiharshithalanki4111 4 ай бұрын
Nice explanation sir😊 awesome 👍
@techathome
@techathome 4 ай бұрын
Thank you ❤️
@GoalLeeDesigns
@GoalLeeDesigns 15 күн бұрын
What is the name of that board and where can I get it
@techathome
@techathome 15 күн бұрын
Arduino Uno R3. You can buy online also: www.flyrobo.in/arduino-uno-r3-compatible-board-plus-cable-for-arduino-uno-1?tracking=EGXCW2oMhfyBcK6Sk1AJrTIztP2cZx0qc64QgrBQeDUPl0RUIBuMMhQFtnvTOaKj Max6675: www.flyrobo.in/max6675-module-with-k-type-thermocouple-sensor?tracking=EGXCW2oMhfyBcK6Sk1AJrTIztP2cZx0qc64QgrBQeDUPl0RUIBuMMhQFtnvTOaKj
@DTalesJourney
@DTalesJourney Жыл бұрын
Sir mujhe har 30 seconds ke bad blinking led chahiye 5 seconds le liye... Plzzz help me with the code
@Eyshcoffee
@Eyshcoffee 2 жыл бұрын
Is it possible to make the LED stop blinking after blinking 10 times? And how?
@techathome
@techathome 2 жыл бұрын
Refer this [I have used built in led- pin 13] int x=1; void setup() { pinMode(LED_BUILTIN, OUTPUT); } void loop() { if(x==1) { for(int i=0;i
@srirammahapatra448
@srirammahapatra448 Жыл бұрын
Hy If i use pin no -6 or -5 that will be run ?
@techathome
@techathome Жыл бұрын
Yes you can use, But declare the correct pin in the code as well
@srirammahapatra448
@srirammahapatra448 Жыл бұрын
thanks you so much for your response @@techathome
@BestmemoriesBesties
@BestmemoriesBesties 8 ай бұрын
Meeru output ni big letters rasaru kada enduku smalls enduku tesukovatledu Elaaa code Ki related videos Chestara plz its helpful to all why we write the code like this .
@AnjumFAffu
@AnjumFAffu Жыл бұрын
Hey..How to fix the error occured while uploading the sketch
@techathome
@techathome Жыл бұрын
Check if the proper board is selected along with COM port in Tools
@AliBaba-dc6zo
@AliBaba-dc6zo Жыл бұрын
can you make complete course on arduino coding and implementation
@techathome
@techathome Жыл бұрын
I already have Arduino tutorials playlist : kzbin.info/aero/PL4B0LEKY-jrT_fjOGkX_NZ52ZHZf8s9S-
@indianarduinoprojects8753
@indianarduinoprojects8753 2 жыл бұрын
My led on my arduino uno board is not blinking on pressing the reset button and code is not uploading to it can you please help me 🙏🙏
@techathome
@techathome 2 жыл бұрын
Any error are you getting?? While uploading
@indianarduinoprojects8753
@indianarduinoprojects8753 2 жыл бұрын
@@techathome yes it is showing that no arduino boards found
@indianarduinoprojects8753
@indianarduinoprojects8753 2 жыл бұрын
@@techathome when I press the reset button the led is not blinking
@indianarduinoprojects8753
@indianarduinoprojects8753 2 жыл бұрын
@@techathome from the same cable I connect another arduino that one is working fine
@techathome
@techathome 2 жыл бұрын
May be issue with board??
@gundewarsriguru4136
@gundewarsriguru4136 2 жыл бұрын
can i kow the process to blink two LEDS with same code and connections
@techathome
@techathome 2 жыл бұрын
Just connect one more LED to same digital pin
@AboywithOCD
@AboywithOCD 2 ай бұрын
If I pass in my exams because of this I will give you a chocolate
@techathome
@techathome 2 ай бұрын
Soon I will be receiving a chocolate then😶
@AboywithOCD
@AboywithOCD 2 ай бұрын
@@techathome Hopes for the best 😊
@EdTechPraveen
@EdTechPraveen 10 ай бұрын
Bro my transmission light blinking automatically please help me
@ahmedshaker7897
@ahmedshaker7897 2 жыл бұрын
if we removed arduino cable , will the led still blink ?
@techathome
@techathome 2 жыл бұрын
No, You have to give supply using battery (round pin connector) Or usb(power bank)
@ahmedshaker7897
@ahmedshaker7897 2 жыл бұрын
@@techathome ok thanks
@sharmiladevi4727
@sharmiladevi4727 Ай бұрын
we need proper definition for setup void,digitalwrite,pinmode
@techathome
@techathome Ай бұрын
You can also get a detailed explanation on the Arduino official website.
@Officialnoob_-999
@Officialnoob_-999 9 ай бұрын
My led is not blinking 😢😢😢
@techathome
@techathome 9 ай бұрын
Check the connections.
@Panchothefatcat
@Panchothefatcat Жыл бұрын
How do you change the color?
@techathome
@techathome Жыл бұрын
It is only blue colour led.
@aasirawez3722
@aasirawez3722 Жыл бұрын
If more LEDs are to be blinked then because I want to make a project which has maths shape like arrow, circle, triangle
@pvasu8264
@pvasu8264 2 ай бұрын
Why You didn't used Resistor
@techathome
@techathome 2 ай бұрын
For less time it's still ok. But it is safer to use a resistor.
@majaharali125
@majaharali125 8 ай бұрын
Bro, mera blinking program nahi run ho rahahe, mujhe thora help chahiye....
@techathome
@techathome 8 ай бұрын
What is the error?
@Arun_1008
@Arun_1008 3 жыл бұрын
Can You provide me Report of this program...🙏
@rajathkrishnarhathwar4334
@rajathkrishnarhathwar4334 3 жыл бұрын
In tinkercad, ground pin wire is not there. What to do?
@techathome
@techathome Жыл бұрын
Refer this : kzbin.info/www/bejne/mXPQip6XgN5jmtE
@readytoboot
@readytoboot Жыл бұрын
Keep going. 💪🏻💪🏻💪🏻💪🏻
@techathome
@techathome Жыл бұрын
Thank you
@hansikawijerathne5507
@hansikawijerathne5507 Жыл бұрын
Thank you very much💗 this is very important👍
@techathome
@techathome Жыл бұрын
Welcome
@InformationEducation6
@InformationEducation6 9 ай бұрын
Sir Arduino code kese banaya ka ak video banaya
@techathome
@techathome 9 ай бұрын
I didn't understand your doubt, Code is explained in the same video.
@agfilmsmarketing
@agfilmsmarketing Жыл бұрын
I want to connect electromagnet, Turn ON and OFF Please guide me
@techathome
@techathome Жыл бұрын
You have to use relay module. Refer this tutorial: kzbin.info/www/bejne/n6qWn4t8ncSSqMksi=7FvMi5UPKguK-8IV In this only changes are, 1. Instead of AC bulb, connect your electromagnet wires. 2. Instead of AC power supply, connect DC voltage required for your electromagnet.
@agfilmsmarketing
@agfilmsmarketing Жыл бұрын
@@techathome thank you Another thing I want to connect 8 electromagnets Turn on NC on start turn off randomly Once all are turned off wait for RESET button And do the process again Please help
@manpreetnooraulakh2846
@manpreetnooraulakh2846 Жыл бұрын
Can you share the code , the link that you given it is not opening
@techathome
@techathome Жыл бұрын
Can u send request on mail, I will share the file.
@prithvisatarkar4178
@prithvisatarkar4178 3 жыл бұрын
Hello sir, I have facing problem while uploading the code, it shows byte error
@nihalahmed4528
@nihalahmed4528 2 жыл бұрын
Yes me also having that issue
@techathome
@techathome Жыл бұрын
check the port once in tools
@biopoweruk
@biopoweruk 2 жыл бұрын
no resistor to protect the LED?
@aatrox5559
@aatrox5559 2 жыл бұрын
That is used as current limiting resistor Usually LED need very less current, if you don't use resistor, LED can burn after using for more time . But I have heard pin 13 has inbuilt resistor. U can use with LED, if you are connecting to any other pin except 13. here you go sir
@techathome
@techathome Жыл бұрын
Yes , even i have come across the same on internet Pin13 has inbuilt resistor
@bhubaneswarchandrasekharpu9349
@bhubaneswarchandrasekharpu9349 2 жыл бұрын
THANKS A LOT FOR UR NICE DESCRIBTION
@techathome
@techathome 2 жыл бұрын
Welcome
@Kasko-na-raja
@Kasko-na-raja 3 жыл бұрын
Can u send the video link for aurdiuno fading programme and inbuilt led programme ..?
@techathome
@techathome Жыл бұрын
Fade : kzbin.info/www/bejne/jaepnoyvbJp9q5I
@coolscholars4451
@coolscholars4451 7 ай бұрын
can't set com-state for "\\.\COM24 ??
@techathome
@techathome 7 ай бұрын
Check com port in device manager and select the same in Arduino IDE
@guliyevshahriyar
@guliyevshahriyar Жыл бұрын
Thank you for helping.
@techathome
@techathome Жыл бұрын
Welcome
@SathishYeripogu
@SathishYeripogu 2 жыл бұрын
Fabulous explanation
@techathome
@techathome 2 жыл бұрын
Thank you
@knowledgeboard-fi2cs
@knowledgeboard-fi2cs Жыл бұрын
How i connect the Arduino to mobile
@techathome
@techathome Жыл бұрын
There are few apps available on Play Store, Using that u can write code and upload from your phone using OTG cable.
@khushisingh9603
@khushisingh9603 Жыл бұрын
Hello sir and thank you
@techathome
@techathome Жыл бұрын
Welcome
@ashinthtnyt2179
@ashinthtnyt2179 2 жыл бұрын
Similar to java ???
@techathome
@techathome 2 жыл бұрын
It's C
@charanjitnarang7292
@charanjitnarang7292 2 жыл бұрын
How many led can be connected
@techathome
@techathome 2 жыл бұрын
There are 13 digital pins, you can use them
@JoeEvansSound
@JoeEvansSound Жыл бұрын
Hi mate. thank you for this video and your hard work, it is a very good video adding extra information for us. thank you very much. :¬)
@techathome
@techathome Жыл бұрын
Welcome
@Dishank25S
@Dishank25S Жыл бұрын
Great video 🔥
@techathome
@techathome Жыл бұрын
Thank you
@zakawaka3752
@zakawaka3752 2 жыл бұрын
And how to make it for slowly turning on and off
@techathome
@techathome 2 жыл бұрын
Increase the delay
@zakawaka3752
@zakawaka3752 2 жыл бұрын
@@techathome thanks for replying
@yasithlalanjana1125
@yasithlalanjana1125 2 жыл бұрын
//KZbin|Tech at Home int led1=7; void setup() { //pinMode(pin,mode); pinMode(7,OUTPUT); } void loop() { digitalWrite(led1,HIGH); delay(200); digitalWrite(led1,LOW); delay(200); }
@shivrajpatil7759
@shivrajpatil7759 2 жыл бұрын
It is showing error
@techathome
@techathome 2 жыл бұрын
Did you select the port
@jeetpandya4760
@jeetpandya4760 Жыл бұрын
How to blink blue led 5 times and stop it then blink red led 5 times
@techathome
@techathome Жыл бұрын
Use For loop with count 5. Add blink logic inside for loop. Repeat same for next LED.
@jayshhirekar159
@jayshhirekar159 Жыл бұрын
How can I stop blinking of LED
@techathome
@techathome Жыл бұрын
You can keep the blink logic inside a for loop . for(int i=0; i
@gayathrinaidumiriyala7262
@gayathrinaidumiriyala7262 4 жыл бұрын
same way done.but led not blinking ,may i know the reason
@techathome
@techathome 4 жыл бұрын
Reverse the terminal of LED and check once. Even then if it is not working, connect to any other digital pin.
@gayathrinaidumiriyala7262
@gayathrinaidumiriyala7262 4 жыл бұрын
@@techathome all changes made but no result
@techathome
@techathome 4 жыл бұрын
@@gayathrinaidumiriyala7262 can you please send me the code. Mail here : deepakhd20@gmail.com
@gayathrinaidumiriyala7262
@gayathrinaidumiriyala7262 4 жыл бұрын
@@techathome done
@techathome
@techathome 4 жыл бұрын
@@gayathrinaidumiriyala7262 in the digitalwrite () , instead of led change it to 7 in both lines.
@annuchaudhary164
@annuchaudhary164 2 жыл бұрын
thank you
@techathome
@techathome 2 жыл бұрын
Welcome
@souravl6882
@souravl6882 4 жыл бұрын
Nice one deepak
@techathome
@techathome 4 жыл бұрын
Thanks
@vijayakumari-kc8mj
@vijayakumari-kc8mj Жыл бұрын
I want Circuit diagram on led blink
@techathome
@techathome Жыл бұрын
It's given in description.
@lukasnevidzan5523
@lukasnevidzan5523 2 жыл бұрын
LED hat not resistor ????
@techathome
@techathome 2 жыл бұрын
Arduino pin 13 already has register inside
@vsbrosis957
@vsbrosis957 3 жыл бұрын
very informative
@Arun_1008
@Arun_1008 3 жыл бұрын
Please provide Code (Description Coding Link is not going to open) and equipment material link
@techathome
@techathome 3 жыл бұрын
Code is working, pls click on ok, when it asks for folder while trying to open
@Arun_1008
@Arun_1008 3 жыл бұрын
@@techathome this file format is not supported
@techathome
@techathome 3 жыл бұрын
Have you installed Arduino IDE in your computer?
@Arun_1008
@Arun_1008 3 жыл бұрын
@@techathome No
@techathome
@techathome 3 жыл бұрын
Download and install this: downloads.arduino.cc/arduino-1.6.7-windows.exe Then Open the file using this
@syedsharukh8265
@syedsharukh8265 Жыл бұрын
Was the language c++
@techathome
@techathome Жыл бұрын
Basics of C with some Arduino specific functions
@nahomhabtamu870
@nahomhabtamu870 2 жыл бұрын
no it is working first not on 7 on 13
@techathome
@techathome 2 жыл бұрын
It will work on all digital pins, have you configured correctly in code?
@MuhandisTv
@MuhandisTv 4 жыл бұрын
Good job 👍👏👌👌
@kangajankuganathan7457
@kangajankuganathan7457 2 жыл бұрын
Thank you :-)
@NehaKumari-cs5qe
@NehaKumari-cs5qe Жыл бұрын
My led is not blinking I also do same but it's not blinking
@techathome
@techathome Жыл бұрын
Can u verify the connections, Anode and cathode
@nimeshkumavat4784
@nimeshkumavat4784 6 ай бұрын
Where is part 1 ?
@techathome
@techathome 6 ай бұрын
Complete playlist: kzbin.info/aero/PL4B0LEKY-jrT_fjOGkX_NZ52ZHZf8s9S-&si=nfOqvqjlkUnmWSpW
@muniranorqoziyeva1301
@muniranorqoziyeva1301 Жыл бұрын
😊soo cool 🎉
@techathome
@techathome Жыл бұрын
Thank you
@rohanshiragaonkar917
@rohanshiragaonkar917 3 ай бұрын
Thank u sir
@mileshk2293
@mileshk2293 3 жыл бұрын
Nice helpful
@amit.s.4432
@amit.s.4432 Жыл бұрын
How to open the rar files in mobile
@techathome
@techathome Жыл бұрын
Try to find zip file reader on Play Store.
@amit.s.4432
@amit.s.4432 Жыл бұрын
@@techathome Sir, I tried to open the file by downloading the Zip file from the Play Store but it's not opening the file, please send me the name of the Zip file reader that I have to download from the Play Store, thanks
@techathome
@techathome Жыл бұрын
Try this: play.google.com/store/apps/details?id=com.rarlab.rar
@sagar_jadhav77
@sagar_jadhav77 8 ай бұрын
Kuch galat hou sir dhyan se dheko
@techathome
@techathome 7 ай бұрын
?
@deekshaprajapati8892
@deekshaprajapati8892 Жыл бұрын
Yes my led also blinking❤
@AbhishekAbhishekp.s
@AbhishekAbhishekp.s Ай бұрын
Its working wow
@techathome
@techathome Ай бұрын
🙂
@danmax3418
@danmax3418 2 жыл бұрын
bro why it deoesn t blink, should i press a button or smthin?💀💀💀
@danmax3418
@danmax3418 2 жыл бұрын
Nvm it worked, i just the led in the wrong way, sry
@techathome
@techathome 2 жыл бұрын
👍
@kripathankachan1782
@kripathankachan1782 3 жыл бұрын
Very useful ☺️👍
@techathome
@techathome 3 жыл бұрын
Thanks
@ruhulwara
@ruhulwara 2 жыл бұрын
Thank you dada
@techathome
@techathome 2 жыл бұрын
Your welcome 🙂
@technodarsh5721
@technodarsh5721 3 жыл бұрын
Can I call you? I need help!
@technodarsh5721
@technodarsh5721 3 жыл бұрын
It says serial port not selected
@technodarsh5721
@technodarsh5721 3 жыл бұрын
It says serial port not selected
@techathome
@techathome 3 жыл бұрын
Have you selected com Port in tools?
@Saizzzo
@Saizzzo 11 ай бұрын
Prepare diwali light with Arduino
@techathome
@techathome 11 ай бұрын
kzbin.info/www/bejne/fnS0iIOjiKmkmdEsi=GC-dnIPxvUbPzzbG
@MrExcel1986
@MrExcel1986 4 ай бұрын
my my led is not blinking
@techathome
@techathome 4 ай бұрын
What is the error?
How to use a BreadBoard - Electronics Basics 10
7:22
Simply Electronics
Рет қаралды 918 М.
Seja Gentil com os Pequenos Animais 😿
00:20
Los Wagners
Рет қаралды 23 МЛН
버블티로 부자 구별하는법4
00:11
진영민yeongmin
Рет қаралды 17 МЛН
I tried the Cheapest Arduino Alternative (that Nobody heard of)
13:31
RP2040-Zero. как альтернатива Arduino Nano
15:46
arduinoLab
Рет қаралды 22 М.
How to Blink an LED with Arduino (Lesson #2)
15:57
Science Buddies
Рет қаралды 111 М.
Arduino MASTERCLASS | Full Programming Workshop in 90 Minutes!
1:25:31
Programming Electronics Academy
Рет қаралды 2,6 МЛН
8x8x8 LED CUBE WITH ARDUINO UNO
6:46
HARRY LE
Рет қаралды 15 МЛН
Arduino Blinking LED Tutorial
2:50
Curio Res
Рет қаралды 144 М.
Arduino Uno R4 Wifi LESSON 3: Blink an LED With the Arduino
22:53
Paul McWhorter
Рет қаралды 10 М.
Arduino Tutorial: LED Sequential Control- Beginner Project
3:53
Drone How
Рет қаралды 1,4 МЛН
STM32 Guide #2: Registers + HAL (Blink example)
30:02
Mitch Davis
Рет қаралды 202 М.
Seja Gentil com os Pequenos Animais 😿
00:20
Los Wagners
Рет қаралды 23 МЛН