Thank you so much. Your videos are so well done and easy to understand!
@programmingelectronics3 жыл бұрын
Thanks for watching - I am glad it's helpful!
@ChadKapper3 жыл бұрын
Every video is better than the previous! You do such a good job of helping me discover the value in the details.
@programmingelectronics3 жыл бұрын
Thanks Chad! Much appreciated!
@interlightstudio16452 жыл бұрын
Been watching your vids since 2019. I Truly like the way you provide information.thank you
@programmingelectronics2 жыл бұрын
I appreciate that! Thank you!
@maggotdude6673 жыл бұрын
You break down information so well! I really appreciate these videos.
@programmingelectronics3 жыл бұрын
Thanks so much for the note! Much appreciated! If there is any info in particular you are looking to learn about, please feel free to let us know and we'll try and make a video on it.
At 16:30 why is the first line of output messed up? It happened on the other examples too.
@programmingelectronics3 жыл бұрын
Great question and nice observation Mark! I am sure some out there could explain this (and I would love to know as well), but I _think_ it has to do with the Serial Monitor reseting the Arduino when it is opened.
@aaronfidelisrecine6 ай бұрын
MANNNNNN I've been losing my damn MIND trying to understand for loops and arrays and WOW you make it so easy! THANK YOU!!!!
@programmingelectronics6 ай бұрын
So glad it helped!
@thomashvnmusic3 жыл бұрын
This is really good, thanks!!!
@programmingelectronics3 жыл бұрын
Thanks a ton for watching! I hope it was helpful!
@thomashvnmusic3 жыл бұрын
@@programmingelectronics Im probably one of the oldest fans on the channel. I followed your channel about 8 years now and i remember the first videos you posted when you were drawing and explaining the micro-controller pins on paper. Was a fan back then, still a fan.
@michaelcheich24813 жыл бұрын
@@thomashvnmusic Thanks for sticking around!!!
@thomashvnmusic3 жыл бұрын
@@michaelcheich2481 Absolutely!
@PrUveTGoogl Жыл бұрын
Вы большой молодец , что делаете такие обучающие видео , спасибо большое !
@joshuapitong8992 жыл бұрын
Really helpful.🙌
@programmingelectronics2 жыл бұрын
Great to hear! Thank you!
@KW-ei3pi9 ай бұрын
Thanks! Very good tutorial. You went through the last part pretty quickly, and I couldn't figure out why "now" didn't print on the second and subsequent loops. It wasn't entirely clear that the INDEX values were in memory and could be overwritten by code to a new value. I get it now. Thanks. Regards.
@ianclaproth3675 Жыл бұрын
An excellent explanation of how the for loop actually works when iterating arrays. Thank you.
@programmingelectronics Жыл бұрын
Thanks so much for watching!
@syaduinotech36812 жыл бұрын
Thanks for the video, hope you can share the application of using this on the sensor as you mention in the beginning. Tq sir
@programmingelectronics2 жыл бұрын
Thanks for watching!
@warrenscorner3 жыл бұрын
That was a great tutorial of a for loop! 😂 Maybe part 2 can explain how to append an array or what types of variables can go into an array.
@programmingelectronics3 жыл бұрын
Thanks for the note and recommendation Warren! In retrospect I can see this is more a "for loop video" than an "array video" We changed up the title and thumbnail to hopefully reflect that better.
@RixtronixLAB2 жыл бұрын
Nice info, keep it up,thanks for sharing :)
@programmingelectronics2 жыл бұрын
Thanks for the note!!
@joroxanborata31023 жыл бұрын
hi thanks you for the informative about arduino can you make a video to combine 3 sketch that have different doing. like relay lighting , automatic water, and a dht11 sensor
@programmingelectronics2 жыл бұрын
Thanks for the note! I'll see what we can come up with for you!
@Mica_No2 жыл бұрын
Its so entertaining listen to you
@programmingelectronics2 жыл бұрын
Thanks so much for watching!
@AbrarShaikh27413 жыл бұрын
Thanks for the video. However, it is more lf a FOR loop video then Array Video.
@programmingelectronics3 жыл бұрын
You are right! Title adjusted, and I think we'll change out to a more representative thumbnail. Thanks @Abrar!
@TheStudpop3 жыл бұрын
Seems to me that i = 0 gets incremented before the next line, so the array’s index will never be 0 but rather 1,2,3.
@programmingelectronics3 жыл бұрын
I may have not explained it appropriately in the video, but when _entering_ a "for loop", the variable gets initialized and the condition is checked. The increment/decrement happens at the end of the for loop before the next check of the condition. 1st-> initialize var, check condition n...-> increment/decrement, check condition Hope this helps clarify!
@TheStudpop3 жыл бұрын
@@programmingelectronics You're the best! Thanks.
@LilGh02t2 жыл бұрын
The '++' operator increments the variable. If it's placed after (i++), the variable will be incremented after the code in the loop is executed, if the operator is placed before the variable (++i), the variable is incremented before entering the loop. Same rules applies to the '- -' operator.
@miroslavmikus64802 жыл бұрын
If you don't need to know index i, you can use range based for loop: for (float val : sensorReadings) { } ; plus with another feature of c++11 "auto": for (auto val : sensorReadings) { Serial.println(val); } - less you have to write mans less bugs you can make
@Skyrime007 Жыл бұрын
How to iterate array with millis() function or iterate through multiple arrays simultaneously