Arduino Tutorial: LED Sequential Control- Beginner Project

  Рет қаралды 1,435,438

Drone How

Drone How

Күн бұрын

Пікірлер: 629
@ihrdlick
@ihrdlick 3 жыл бұрын
I am almost 40y old, I ordered my first Arduino and I need videos like this. Thanks
@sifar1
@sifar1 3 жыл бұрын
Seriously!!
@harjendartejwani2794
@harjendartejwani2794 2 жыл бұрын
I need program for this
@SelamZelewo
@SelamZelewo 2 жыл бұрын
30 here too 🙏🏾🙏🏾
@XanthiumIndustries
@XanthiumIndustries 2 жыл бұрын
we have a youtube channel that deals with Arduino,ATmega328P,Java,Serial programming ,robotics. So if you like these stuff do Subscribe. Sorry for annoying
@MrUngola
@MrUngola 2 жыл бұрын
I am 48 😁
@bdhoff72
@bdhoff72 7 жыл бұрын
This is a great basic tutorial. I'm just getting started with Arduino and this helped me understand how to work with pins via code.
@arduinoproject5877
@arduinoproject5877 7 жыл бұрын
I found this site where you can buy starter learning kit. (Just so you know, I'll make some money if you use this link.) www.banggood.com/Geekcreit-UNO-R3-Basic-Starter-Learning-Kit-No-Battery-Version-For-Arduino-p-1133595.html?p=QG080163176892016090
@williamchupin3230
@williamchupin3230 3 жыл бұрын
same
@OmarLikesSpycakes
@OmarLikesSpycakes 10 күн бұрын
7 years 56 likes and 1 reply 😭 🙏
@tsaprojectsbyplatt
@tsaprojectsbyplatt 7 жыл бұрын
Planning to teach electronics and animatronics using Arduino at my high school. I added more leds and modified the IDE sketch. It worked. Thanks for your efforts.
@Tobbetuna
@Tobbetuna 6 жыл бұрын
Watching this 2.5 years later and just HOPING the dropbox would be up. It was ! Awesome man. Got it working.
@dylansheils1049
@dylansheils1049 8 жыл бұрын
Thanks for explaining the circuit I was confused with people just making it.
@DroneHow
@DroneHow 8 жыл бұрын
+Dylan Sheils Glad it helped. Please subscribe for more how-to videos.
@iyedaloui9934
@iyedaloui9934 4 жыл бұрын
Me 2
@Harry-uc4fo
@Harry-uc4fo 3 жыл бұрын
.
@divyanshshaw6507
@divyanshshaw6507 2 жыл бұрын
hi
@klsar1
@klsar1 2 жыл бұрын
This easy-to-understand video will continue to get appreciations in many years to come !!
@johndurrant9262
@johndurrant9262 6 жыл бұрын
Thanks for this... Bought my 8 year old son an Arduino starter for Christmas and thanks to this video we were able to get our first project up and running before Christmas dinner!!
@jacobmufasa
@jacobmufasa 8 жыл бұрын
I love you it was so clean and clear.. I paid almost 50 dollar for shitty videon on Udemy and its not this clear.
@DroneHow
@DroneHow 8 жыл бұрын
+jacobmufasa Glad it helped. Please subscribe.
@Cariciasification
@Cariciasification 7 жыл бұрын
i paid less for arduino starter kit
@aftereffects00
@aftereffects00 6 жыл бұрын
Me too.. I cant learn from skillshare too
@ddskimmer
@ddskimmer 5 жыл бұрын
I use Udemy for to acquire information. Sometimes I don't know how to express what I am looking for but when I go to Udemy...it is identified and then I google it of youtube it. I have made the same mistakes on Udemy...but learn to ask for my money back! :-)!! Before they would refund immediately now they are playing games with one's money...demanding even a month before they refund your money...so you have to be very careful what you do with Udemy. Besides there are other places online that do similar teachings. Keep digging. Ask for your money back.
@MrEvilTag
@MrEvilTag 5 жыл бұрын
Whatever udemy is sounds like a scam
@HamzaKhan-bg9fh
@HamzaKhan-bg9fh 6 жыл бұрын
For all those who can only get one light on, when you upload the code to the board it should work.
@amirizadi9910
@amirizadi9910 4 жыл бұрын
Thnx man, was wondering why
@aaronmaximus6806
@aaronmaximus6806 3 жыл бұрын
pro trick : watch series on Kaldrostream. I've been using it for watching loads of movies these days.
@ahmedkase1245
@ahmedkase1245 3 жыл бұрын
@Aaron Maximus definitely, I've been using kaldrostream for since november myself :)
@huxleyian24
@huxleyian24 3 жыл бұрын
@Aaron Maximus yup, been using kaldroStream for since november myself =)
@vanaik
@vanaik 4 жыл бұрын
just got an Ardoino. this was my first project. thank you so much for the great explanation!
@marios_ideas
@marios_ideas 4 жыл бұрын
Please my recent tutorial on using LEDs with arduino. Maybe you will find it helpful
@mak.1ps
@mak.1ps 5 жыл бұрын
You can easily make a traffic light with this,just add 3 more leds,change the code a bit and there you go
@boulder89984
@boulder89984 4 жыл бұрын
The way you say things makes the whole idea click with my brain. Many thanks !
@alionides
@alionides 4 жыл бұрын
here is the code int led1 = 10; int led2 = 12; int led3 = 11; // the setup function runs once when you press reset or power the board void setup() { // initialize digital pin LED_BUILTIN as an output. pinMode(led1, OUTPUT); pinMode(led2, OUTPUT); pinMode(led3, OUTPUT); } // the loop function runs over and over again forever void loop() { digitalWrite(led1, HIGH); // turn the LED on (HIGH is the voltage level) delay(200); digitalWrite(led2, HIGH); // turn the LED on (HIGH is the voltage level) delay(200); digitalWrite(led3, HIGH); // turn the LED on (HIGH is the voltage level) delay(200); digitalWrite(led1, LOW); // turn the LED on (HIGH is the voltage level) delay(300); digitalWrite(led2, LOW); // turn the LED on (HIGH is the voltage level) delay(300); digitalWrite(led3, LOW); // turn the LED on (HIGH is the voltage level) delay(300); }
@Bostish2
@Bostish2 9 жыл бұрын
I think you did a great job! Got my first Uno today and this project was perfect for next level of blink :)
@DroneHow
@DroneHow 9 жыл бұрын
+Bostish2 Thanks! Glad you found it useful. Please subscribe to stay tuned
@worldofelectronicsandprogr1128
@worldofelectronicsandprogr1128 2 жыл бұрын
Congratulations for the two Arduino tutorials! 🙏🙏🙏🙏 You explained very good the concepts in a slow rhythm, just perfect for an Arduino beginner! 😊😊😊😊 We are looking forward for more tutorials to learn more about this beautiful world of Arduino! 🌈🌈🌈🌈
@forthtemple
@forthtemple 7 жыл бұрын
Awesome. My Arduino worked straight out of the box using this tutorial.
@threeelancer
@threeelancer 4 жыл бұрын
Thank you for explaining every step so well in terms of why it must be done and not just handing out a recipe. Good pacing too, videos feel succinct. Cheers.
@ProfMoose
@ProfMoose 6 жыл бұрын
A true beginner's guide for beginners! Fed up with so many that assume just because you are new to Arduino you must have a degree in programming. This was like a breath of fresh air :-) I've subscribed!
@XanthiumIndustries
@XanthiumIndustries 2 жыл бұрын
we have a youtube channel that deals with Arduino,ATmega328P,Java,Serial programming ,robotics. So if you like these stuff do Subscribe. Sorry for annoying
@thirdieacegala5532
@thirdieacegala5532 2 жыл бұрын
excuse me i cant realy open the file
@ProfMoose
@ProfMoose 2 жыл бұрын
@@thirdieacegala5532 The first two work for me. I don't know about the dropbox file as I can't remember my login :-)
@tingala_0129
@tingala_0129 3 жыл бұрын
Thank you so much dude, this is helping me going through my Mechatronics class!
@saralopez3347
@saralopez3347 9 жыл бұрын
Thank you for uploading this! i just got my first arduino kit yesterday and your video helped me get my first project done. You've got a new subscriber here, I hope that there'll be new videos like this coming soon.
@maadlemin5213
@maadlemin5213 Жыл бұрын
Only the LED on port 13 is blinking . The other ones only work when I unplug an plug back in.
@garymedveczky9552
@garymedveczky9552 5 жыл бұрын
Great beginner tutorial! I went from knowing nothing about Arduino to knowing how to code flashing LED's! Please make more.
@asulliv1954
@asulliv1954 7 жыл бұрын
I GOT IT I CAN BELIEVE IT I GOT IT!!!!Thank You my first Project after it failed because i noticed the less coming from Arduino where also on negative i moved them in front of l.e.d.’s and it worked
@sonicflamezgamer726
@sonicflamezgamer726 4 жыл бұрын
Thanks tHIS Helped me a lot !!!i bought my first kit last week and this helped a lot to do more than just the basic steps!!
@dienuss292
@dienuss292 5 жыл бұрын
thanks dude, just needed the thing with the breadboard for school so this helped a lot
@douglasfurtek7637
@douglasfurtek7637 6 жыл бұрын
Thank you for the beautiful introduction to Arduino. This is my first time and everything you said worked the first time.
@Greenslimegaming11181
@Greenslimegaming11181 3 жыл бұрын
this is really cool, i am brand new to Arduino but i simply modified the code to add more leds into the game. i now have 6 leds and they still work like intended its reallt cool
@brokensongrecord
@brokensongrecord Жыл бұрын
This was the best video I could find on how to do it.Thank you :) Managed to do it right after and tweaked a bit with the code.
@CurtRowlett
@CurtRowlett 7 жыл бұрын
Great tutorial, easy to understand, and fun to make (and I even added in a fourth light). Thanks for making this video.
@andrew919
@andrew919 6 жыл бұрын
Good video. This helped me out alot. I recently bought an Arduino kit because i like programming. This helped alot with the basics
@jenniferoviawe
@jenniferoviawe 7 жыл бұрын
Your's worked!! Thank you I learned that yes it blinks but I have to program it to do what you are showing in the video wow that's lots of work to do on my end!!!
@shadinpk2846
@shadinpk2846 3 жыл бұрын
Hearty thanks sir I am from India, Kerala
@Defirence
@Defirence 2 жыл бұрын
Amazing video, thank you! I upped the count to 5 and wrote in some more code from the already-existing Sketch, awesome little project!!
@salmanijaz8326
@salmanijaz8326 4 жыл бұрын
thanks man my first ever project on Arduino is this .
@alisafwan1193
@alisafwan1193 7 жыл бұрын
Explained absolutely so perfect
@nezense
@nezense 6 жыл бұрын
Thanks a million my friend, it was my first work in arduino to the school.
@TheBowlerYT
@TheBowlerYT 2 жыл бұрын
I used a power supply and an arduino amd tried the same thing. The led's blinked but didn't turn off completely, that's because when the arduino powered it off, the power supply kept it on, producing a weird half-blink. To fix this I took away the power supply and only used the arduino, thanks bro fixed my problem
@FreshFlixProductions
@FreshFlixProductions 5 жыл бұрын
So easy and well explained. Thank you sir!
@aminoacidice
@aminoacidice 3 жыл бұрын
Man in 2021 and this still work Thanks
@hardikgagarani4905
@hardikgagarani4905 4 жыл бұрын
thanks so much .i started arduino last week and this project is so good thx alot dude!!!!!!!!! love this vid
@hardikgagarani4905
@hardikgagarani4905 4 жыл бұрын
i am literally watching this in 2020 lol but it was always helpful
@puneethkumar703
@puneethkumar703 4 жыл бұрын
hi Hardik I just wanted to point to the free Arduino simulator out there. This can be a great resource if you are just starting with learning Arduino. #wokwi wokwi.com for more such projects wokwi.com/arduino/libraries for examples of third party libraries please leave a comment if you have any questions Kindly share it with your friends also 😃
@dbach7
@dbach7 6 жыл бұрын
Worked for me. I added another LED just to see if I could do it.
@GarlandLym
@GarlandLym 3 жыл бұрын
Great video. This is the first arduino tutorial I came across that clearly explained most everything I needed to know. And in such a short time. Thank you
@SagvanKurdi
@SagvanKurdi 2 жыл бұрын
It is 2022 and this video helped me a lot. It was short, clear, and straight to the point. Thanks a lot!
@bhagatvirsindhu4869
@bhagatvirsindhu4869 5 жыл бұрын
You make it sooo simple. Thanks man. Keep it up.
@SDGlamour
@SDGlamour 5 жыл бұрын
Thank you for an easy to follow 'monkey see monkey do' tutorial, this was my first project and very satisfying when it all worked. Very grateful for you sharing :)
@posenyang9549
@posenyang9549 6 жыл бұрын
nice job. I am learning it with my 11 year old and your pace is perfect. Keep up the good work!
@UzumakiLea
@UzumakiLea 8 жыл бұрын
Thank you very much, finally I know what to do! :)
@DroneHow
@DroneHow 8 жыл бұрын
Glad it helped. Please subscribe for more how to videos!
@UzumakiLea
@UzumakiLea 8 жыл бұрын
sure :)
@friedmystery9123
@friedmystery9123 7 жыл бұрын
It works great thank you, even though you won't use it except for showing off but it is great.
@blakenorthrup
@blakenorthrup 4 жыл бұрын
Much appreciated. Just now getting into Arduino, and this was a great start. Thanks, and sub'd!
@mdsairsoft3104
@mdsairsoft3104 8 жыл бұрын
i made a little different led controll based on your good work
@DroneHow
@DroneHow 8 жыл бұрын
+Golden freddy gaming Glad it helped. Please subscribe
@crinnovator9444
@crinnovator9444 7 жыл бұрын
Because of you l have learn how to program arduino
@imyong7983
@imyong7983 4 жыл бұрын
awesome tutorial man...simple n easy to understand
@deardiaries885
@deardiaries885 3 жыл бұрын
THANK YOU SO MUCH IT HELPED ME A LOT!!
@9brian99
@9brian99 2 жыл бұрын
Nice and simple, I needed a refresher.
@cheekeongng4608
@cheekeongng4608 8 жыл бұрын
Thanks! successfully try out my very first arduino project!
@DroneHow
@DroneHow 8 жыл бұрын
+Chee Keong Ng Glad it helped. Please subscribe
@adilski
@adilski 6 жыл бұрын
You are a great teacher. Great tutorial!
@sherryshah-iw4bg
@sherryshah-iw4bg 6 ай бұрын
Its says "cant access sketch"
@alexander.g7992
@alexander.g7992 7 жыл бұрын
very well and clear explanation and thanks for providing link to download the code, I would appreciate you making more Arduino videos
@crystal_clear2437
@crystal_clear2437 5 жыл бұрын
it was exactly what i needed but I need help, I don t want to burn my LED, because I didn t understand what s his position on the breadboard
@cosmoshivani
@cosmoshivani Жыл бұрын
Thanks for helping me build my very first Arduino Circuit that actually worked 💖🙂
@AbigaelGodinez
@AbigaelGodinez 6 ай бұрын
Thank you so much for your tuturial sir ❤ we are already done with our activities this helps us very much💗
@BroderickMcGarvey
@BroderickMcGarvey 7 жыл бұрын
Such a wonderful tutorial thank you!! :) It's really helping me figure out and learn about these!
@DroneHow
@DroneHow 7 жыл бұрын
+Broderick McGarvey Glad it helped!
@maximwuyts14
@maximwuyts14 5 жыл бұрын
Very good and clear video! Thanks
@adyantman
@adyantman 4 жыл бұрын
Epic Video, thanks for tutorial. It really helped me understand the basics of the Arduino!!
@puneethkumar703
@puneethkumar703 4 жыл бұрын
hi there you can upskill your Arduino programming experience with a free simulator from wokwi. please head to wokwi.com/arduino/libraries see many third-party examples online visit wokwi.com for more. you can learn about servo motor coding, LEDs, OLEDs, LCD displays, pots, RGB LED strips and more
@Cliverumble
@Cliverumble 8 жыл бұрын
flyingclive Excellent description being clear and precise - you have a new subscriber. I am thinking I could use this as a base for controlling 10 x 230v 1.2 Watt LED staircase lights using Triacs instead of relays. I only need the lights to be triggered by a pressure mat at top or bottom of staircase that will turn on the lights in sequence and switch off after pressure mat is triggered at the opposite end.
@DroneHow
@DroneHow 8 жыл бұрын
Thanks for subscribing. That's a cool concept. I'd recommend using a relay bank instead of the triacs. They are inexpensive enough to use and very reliable. Here is a link to a 250v bank that might work: amzn.to/1XFgPyv
@AvikSeth
@AvikSeth 6 жыл бұрын
that's a phenomenal idea Clive Rumble. simply make the use of relay board(s) that come specifically for arduino. do share the link form where you bought/will be buying the pressure sensor and relays. have a great day :D
@dimwoo
@dimwoo 7 жыл бұрын
Thanks dude! Like others got my Arduino in the post this morning and this is my first project :-)
@ciscoprog
@ciscoprog 6 жыл бұрын
Just what I needed. I just wanted to "touch" it instead of just reading/watching/reading info about Arduino.
@ratnakarbh1
@ratnakarbh1 6 жыл бұрын
works flawlessly .. thanks !
@samkhani6971
@samkhani6971 7 жыл бұрын
Thank you so much it was very helpful
@doriantheshortie4028
@doriantheshortie4028 3 жыл бұрын
worked perfect thank you so much dude!!
@vincentrenz58
@vincentrenz58 3 жыл бұрын
Great video you have gained a new subscriber, could you make a soldered version of this circuit as I want to make a Christmas jumper. Thanks
@jordi_p3791
@jordi_p3791 5 жыл бұрын
Hi, thx for the video, it worked for me. But I have one problem, my leds make basically no light. It's very hard to notice and you can only see it decently when you are in a dark room. Any tip?
@JustFun-iz9rf
@JustFun-iz9rf 2 жыл бұрын
wow this is gonna be my first project. thank you for sharing i am gonna subscribe
@newportmeister
@newportmeister 6 жыл бұрын
Great, exactly what I needed, thanks.
@shreyaupadhyay1640
@shreyaupadhyay1640 3 жыл бұрын
thanks for this
@verycomedyjokes9555
@verycomedyjokes9555 6 жыл бұрын
very very nice video for beginner due to HD & programming code
@johnalex1587
@johnalex1587 4 жыл бұрын
Really helpful, big thanks!
@williamchupin3230
@williamchupin3230 3 жыл бұрын
nice video this is the only video that i found that is the best and ilyds i also like the aurdino ide cause i sarched a different one and did not work but thanks to your video
@Ryan-fq3ud
@Ryan-fq3ud 6 жыл бұрын
Thanks, I had a project and I chose the same circuit you showed the video
@girirajtomar519
@girirajtomar519 5 жыл бұрын
it is compulsory to use resistors ????
@malshtilak9011
@malshtilak9011 7 жыл бұрын
Thanks I did my first project.
@alpal8443
@alpal8443 4 жыл бұрын
Got an Uno3 today watched this and low and behold proof of concept (and ability) got me some blinking leds...now to build a robot to take over the world....LOL eeekkk.
@marios_ideas
@marios_ideas 4 жыл бұрын
Please my recent tutorial on using LEDs with arduino. Maybe you will find it helpful
@ngigipn
@ngigipn 4 жыл бұрын
Good tutorial helped me a lot keep it up 👏👏👏
@puneethkumar703
@puneethkumar703 4 жыл бұрын
hi Peter May I present you an open-source free Arduino simulator from wokwi? #wokwi The wokwi Arduino simulator runs on AVR8js platform --> it really emulates an Arduino It is very easy to run third-party Arduino libraries on these as well you can share the complete project easily you can run the simulations even on mobile phones :) Many people are using it in interesting ways blog.wokwi.com/cool-things-people-built-with-avr8js/ visit wokwi.com/arduino/libraries for multiple examples 😃 Please give a like if you find this information helpful Here is a small write up about the simulator www.instructables.com/Best-Free-Online-Wokwi-Arduino-Simulator-Why-Is-Th/ #wokwi
@vlqdus_mdd
@vlqdus_mdd 3 ай бұрын
nice vid but my arduino uno R3 ATMEGA328P (CH340G) has its 13 pin linked to the onboard LED so not the LED on the breadboard is blinking but the onboard led, of course i can just change the code to pins 12 11 and 10 and everything works. Great tutorial for me man
@realtrickybilly
@realtrickybilly 7 жыл бұрын
Nice explanation, thank you. Subscribed.
@DroneHow
@DroneHow 7 жыл бұрын
Thanks!
@ilhamie991
@ilhamie991 6 жыл бұрын
thank you so much. nice video keep it up
@TempleGuitars
@TempleGuitars 7 ай бұрын
Hello! Thank you for this clear tutorial! I want to ask you, is it possible to buy an arduino with more outputs, and change the code so on a chain of maybe 20 LEDs, the two outside LED's activate first, then the next two etc, until they meet in the middle, then reverse until they reach the outside pair again on loop? What would that code look like?
@AlleDagenVeelGames
@AlleDagenVeelGames 5 жыл бұрын
THANK YOU FOR THIES!!!
@WxstedZez_
@WxstedZez_ 8 ай бұрын
Can you do this in the small breadboard?
@harinandanaprajeesh6626
@harinandanaprajeesh6626 4 ай бұрын
yes
@borgirvspitsah7329
@borgirvspitsah7329 4 жыл бұрын
Very concise and clear tutorial. Thanks!
@TrenddyTalks
@TrenddyTalks 5 жыл бұрын
This is one of the best tutorial... Shine guys.... Best 🤙❤
@TravelWithMarti
@TravelWithMarti 2 жыл бұрын
great advice bro
@latajeet9932
@latajeet9932 6 жыл бұрын
Thanks a lot for making it easyyyyy ...
@mohitsingh1112
@mohitsingh1112 7 жыл бұрын
thanks my frist project worked
@Paincakeness
@Paincakeness 6 жыл бұрын
PLEASE MAKE MORE VIDEOS LIKE THIS!
@michealkalaiarasan5177
@michealkalaiarasan5177 7 жыл бұрын
clear explanation
@MyWatchP1
@MyWatchP1 7 ай бұрын
I am from Ghana 🇬🇭. Trying to learn Uno. I hope I am at the right place
@AnaPerez-bu6uu
@AnaPerez-bu6uu 8 ай бұрын
Nice tutorial, thank you 🥰
@maharyfekede
@maharyfekede 4 ай бұрын
Thank you so much for helping me 😇👌
@Samrajel
@Samrajel 8 жыл бұрын
Thanks a lot , really helpful!!!
@DroneHow
@DroneHow 8 жыл бұрын
+Sami Daloğlu Glad it helped. Please subscribe
How to Blink an LED with Arduino (Lesson #2)
15:57
Science Buddies
Рет қаралды 105 М.
Ford RS gauges with Arduino UNO
45:38
upir
Рет қаралды 327 М.
Worst flight ever
00:55
Adam W
Рет қаралды 26 МЛН
💩Поу и Поулина ☠️МОЧАТ 😖Хмурых Тварей?!
00:34
Ной Анимация
Рет қаралды 1,9 МЛН
LIFEHACK😳 Rate our backpacks 1-10 😜🔥🎒
00:13
Diana Belitskay
Рет қаралды 3,9 МЛН
How to use a BreadBoard - Electronics Basics 10
7:22
Simply Electronics
Рет қаралды 900 М.
Arduino ultrasonic sensor led projects | Hc-sr04 Ultrasonic sensor
7:22
You can learn Arduino in 15 minutes.
16:34
Afrotechmods
Рет қаралды 10 МЛН
Make a TINY Arduino Drone with FPV Camera - Will It Fly?
20:26
Max Imagination
Рет қаралды 1 МЛН
8x8x8 LED CUBE WITH ARDUINO UNO
6:46
HARRY LE
Рет қаралды 15 МЛН
How To Control WS2812B Individually Addressable LEDs using Arduino
9:31
How To Mechatronics
Рет қаралды 1,1 МЛН
Arduino Uno Tutorial Basic circuit breadboarding
24:01
eTech Tom
Рет қаралды 392 М.
How to Control a 12V Motor with Arduino: Easy Wiring & Code Examples
44:13
Worst flight ever
00:55
Adam W
Рет қаралды 26 МЛН