Arduino Uno R4 Wifi LESSON 4: Building Clean and Neat Circuits on a Breadboard

preview_player
Показать описание
Pick your Sunfounder kit up so you get the same results I do:

You can pick up the neat jumper wires I showed in the video here:

You can pick up the diagonal cutters I show in my video here:

You guys can help me out over at Patreon, and that will help me keep my gear updated, and help me keep this quality content coming:

In this video I show you how to do neater and cleaner circuit and project builds on a breadboard. I show the importance of keeping your layout neat, and minimizing wire looping and cross overs. Using these techniques will make your circuits easier to debug and have circuits less likely to have bad connections.

#arduinor4wifi
#breadboard
#tutorial
Рекомендации по теме
Комментарии
Автор

I am legend. Just didn't get it posted on YouTube. And I placed my LEDS across the center trench, positive leads towards the top, with ground lead towards the bottom. Then placed the resistors directly from the lower LED lead to the ground rail.

codecage
Автор

Very nice lesson and a good refresher for those that are more experienced. One thing I noticed is that you had power applied to the board while connecting the components to the arduino r4 and breadboard. This can be real problematic, especially for those just starting out with microcontrollers/electronics. That said you are the best teacher on youtube by far

rickbonari
Автор

I'm catching up with you guys, and from today's lesson I made a traffic light. Here is the code

void setup() {
pinMode(13, OUTPUT); // RED
pinMode(10, OUTPUT); // YELLOW
pinMode(8, OUTPUT); // GREEN
}

void loop() {
digitalWrite(13, HIGH);
delay(5000);
digitalWrite(13, LOW);


digitalWrite(8, HIGH);
delay(5000);

digitalWrite(8, LOW);
digitalWrite(10, HIGH);
delay(2000);

digitalWrite(10, LOW);
}

kokojamgotchian
Автор

I am Legend / Double Chest Thump / Black Ice Coffee hold the VODKA!!!!
Your lessons are amazing. LED sequencing this early in the new series must hint at some really cool things to come.

rupert
Автор

Did it three ways - blink all at once, blink sequentially to all on and likewise all off, and blink on-off sequentially. Connected to adjacent pins so a "for loop" works.

kenrandolph
Автор

Great videos. I tried the cold coffee - not bad!

gregcampbell
Автор

I am legend. Your classes are terrific as always.

ronwildhaber
Автор

Thanks!! cutting the legs of the resistors is a great idea

xondemingo
Автор

The homework in lesson 3 was to make the LED's blink a set number of times making it necessary to supply power to each of the LED's on a different pin. In this example you supplied power to all the LED's at the same time and for the same duration. I think this example could have been a lot neater if you had eliminated all the power pins except one and used one positive lead like you did with the GND. Place a LED long leg in the + column, 10 and then place the short leg in A, 10 next LED in A, 12 Next LED in A, 14, and then the last LED in A, 16. Now place one leg of the resistor in B, 10 and the other leg in the ground. Continue placing resistors in B12, B14, and B16, while placing the other leg in the ground plain 12, 14, and 16. You can know also make the code neater with two lines. set the pinMODE to output and then do the write to make it HIGH. I was hoping to see the actual solution to the homework assignment but, I understand the need to show how things can be done neatly so as to not make the wiring more confusing to a student. I was hoping there would be some way to loop through the pin to make it blink a set number of times and then move to the next pin. Maybe this is possible and will come up in a later more advanced lesson. I am very interested what all can be accomplished using this board. Thanks for all the time and effort. you put into these lectures.

nealcameron
Автор

I am Legend, double chest thump! I only used one resistor for the common GND... It works fine.

anagramfive
Автор

Thanx as ever Paul - doing a good job here.

patrickfox-roberts
Автор

Hmm, I stuck one end of the resistor into the ground rail to eliminate those jumper wires and straddled the LED across the center rail. Only 5 wires used. All of a sudden I have the theme to Knight Rider playing in my head.

warrenscorner
Автор

Yes sir, got the homework done. Still working on that YouTube stuff. We'll get-er done tho

edcox
Автор

I always prefer to put the resistor in the positive leg of the LED

donaldspade
Автор

Personally I find it difficult to work with the resistors. they are too malleable, is there something like the short Jumper you mentioned but for resistors? Thank you sir!

SaiyanJin
Автор

another great lesson i'm hoping that you could make a series on stm32

ppyqrjv
Автор

I am Legend - Double Chest Thump
The link to my video is in the Lesson 3 page.

keyboardlearning
Автор

I AM LEGEND! *Chest pump* *Chest pump* : Just started the video but in a little bit after finishing the video You'll see my link to my homework!

drew-david
Автор

Why don't they build protection into the Arduino to stop the pins drawing over currents instead of leaving it to the users?

steveholt
Автор

Why not putting the resistors directly to the ground rail? They are long enough, aren‘t they?

BerndRenzing