NIce refresher for an old software engineer. Nice explanations. I haven't written code in over 20 years but have no problem staying with you. I cut my teeth on FORTRAN, ALGOL, FORTRAN 77, S-FORTRAN, Assembler from various machines, also embedded, Pascal, Turbo Pascal, ANSI 'C', COBOL, Visual Basic, JavaScript - and that's when I became a full time project manager. But it's important to know what the 'softies' are going through and what can go wrong. All the best, Rob in Switzerland
Excellent. Lots to digest here. I have some printed sketches, I'll take a pencil to them and do some breakdown. Reverse engineering is how I've been doing this, nobody has thought me. You are doing Ok!
Top of program, first comment is program purpose. Second comment(s) are the revision changes. I put my user-defined functions after loop() (and have not used prototyping.) Seems to make editing easier as I am paging up and down less. Otherwise, based on 30 years of programming, I organize my programs as you do.
Thanks so much, Jon! You must be reading minds because we just recorded a video on using tabs to help organize code, which will be released later this month. Thanks a ton for the suggestion; if you have any other video ideas, I would love to hear them!
Excellent video! This is one thing i think the Arduino IDE does wrong - by allowing a programmer to stick their user defined functions below the loop and secretly compensating for it is a bit misleading to newcomers. It wasn't until i used platform io which is more strict that i realised what was going on . Any plans to make some videos on MicroPython ?
Thanks so much! Same for me, I really had no idea what was going on behind the scenes until I ran into an issue with not having a prototype written. Thanks for the MicroPython recommendation! No current plans but it’s something that’s has been interesting me for a while.
IDE well allow users to put their functions at the end. Actually the sequence does not matter. we do the same in other languages too. p.e. PHP, JavaScript.
I was kind of expecting a guide on how to break up code into multiple .cpp and .h files, but I guess that just amounts to a rehash of the tutorial on the arduino site on writing your own library, and it's effectively C++.
On a slightly similar vein (but definitely different), we do have a video coming out about using tabs in the Arduino IDE to help organize code. When you add a tab, it creates an additional .ino file in the sketchbook folder and can help with organization.
Awesome video! What if my sketch gets so big it’s hard to find my functions? I created a sketch that the loop got so busy it was hard to figure it out so I created functions to break it up. Then I had so many functions that it was hard to find the function I wanted. How do I create my own libraries? Then how do I insert the code to jump to the library?
We have a video coming out soon about adding tabs in the Arduino IDE to help organize code better - this is a different approach than creating a library, but I think still pretty helpful depending on the use case. If the functions are all related and share/act on similar data, then making a C++ class may be the way to go.
The Arduino IDE 2.0 is great! I love code completion, the movable serial monitor window, and moveable error console (among many other things). But, I am still having an issue with a lag in the serial monitor. When that gets worked out, I will probably make the switch. What I still like about Arduino IDE 1.0 is that it is really simple, which can be a huge advantage for beginners.
The Arduino IDE has a build process that automatically creates prototypes for you (but sometimes it fails ;), which is why I usually always create prototypes for my functions. Thanks for the comment and for watching! arduino.github.io/arduino-cli/0.20/sketch-build-process/
NIce refresher for an old software engineer. Nice explanations. I haven't written code in over 20 years but have no problem staying with you. I cut my teeth on FORTRAN, ALGOL, FORTRAN 77, S-FORTRAN, Assembler from various machines, also embedded, Pascal, Turbo Pascal, ANSI 'C', COBOL, Visual Basic, JavaScript - and that's when I became a full time project manager. But it's important to know what the 'softies' are going through and what can go wrong. All the best, Rob in Switzerland
Thanks a ton for watching Rob!
Excellent. Lots to digest here. I have some printed sketches, I'll take a pencil to them and do some breakdown. Reverse engineering is how I've been doing this, nobody has thought me. You are doing Ok!
Thanks!
You just established my workflow forever... Thank you!
Great! Best of luck!
Well prototype functions is something new to me, fantastic educational video, thank you
Thanks so much for watching -Glad it helped some!
Excellent, I like your way of teaching from scratch. Thanks
Thanks a ton!
I always pick up something new, that may not be the main focus of the video. Like the side information on Function Prototypes. Thanks!
Thanks so much for watching!
Great walkthrough of the process 👍
Thanks for sharing your experience with all of us 👍😀
Thanks so much for watching!
Top of program, first comment is program purpose. Second comment(s) are the revision changes.
I put my user-defined functions after loop() (and have not used prototyping.) Seems to make editing easier as I am paging up and down less. Otherwise, based on 30 years of programming, I organize my programs as you do.
Thanks so much for this!! That’s definitely a great addition.
Thank you! You answered so many questions!
Thanks for the video. Super helpful as always🙏❤️
Thanks so much!
This was really helpful. Perhaps you might consider an episode about using different tabs to help organize code?
Thanks so much, Jon! You must be reading minds because we just recorded a video on using tabs to help organize code, which will be released later this month. Thanks a ton for the suggestion; if you have any other video ideas, I would love to hear them!
@@programmingelectronics yes please my currant WIFI clock is 3000 lines of code and any adjustment also a nightmare in Arduino IDE
Thanks @@jumadhaheri !
Amazing tutorial!!
Thanks for watching!
That explains a lot, Thanks
Glad it helped! Thanks a ton for watching Richard!
Excellent video!
This is one thing i think the Arduino IDE does wrong - by allowing a programmer to stick their user defined functions below the loop and secretly compensating for it is a bit misleading to newcomers. It wasn't until i used platform io which is more strict that i realised what was going on .
Any plans to make some videos on MicroPython ?
Thanks so much! Same for me, I really had no idea what was going on behind the scenes until I ran into an issue with not having a prototype written.
Thanks for the MicroPython recommendation! No current plans but it’s something that’s has been interesting me for a while.
IDE well allow users to put their functions at the end. Actually the sequence does not matter. we do the same in other languages too. p.e. PHP, JavaScript.
You're right, in most cases the sequence doesn't matter as the IDE should be auto-generating those functions prototypes for you.
I love it!!! Cheers!!
Thanks so much!
Do you cover using other processors other than Arduino, like EPS32, STM ?
I like your code font, would you tell the name of the font ?
I think it is just the Arduino IDE default which i believe is called "Monoco"
Thank you.😊🙌
Glad it helped!
Creative video, thanks for sharing it :)
Thanks so much!
Super helpful!
Thanks! Glad it helped!
I was kind of expecting a guide on how to break up code into multiple .cpp and .h files, but I guess that just amounts to a rehash of the tutorial on the arduino site on writing your own library, and it's effectively C++.
On a slightly similar vein (but definitely different), we do have a video coming out about using tabs in the Arduino IDE to help organize code. When you add a tab, it creates an additional .ino file in the sketchbook folder and can help with organization.
Isn't those neopixel legs need a 12v battery?
Awesome video! What if my sketch gets so big it’s hard to find my functions? I created a sketch that the loop got so busy it was hard to figure it out so I created functions to break it up. Then I had so many functions that it was hard to find the function I wanted. How do I create my own libraries? Then how do I insert the code to jump to the library?
U can make new tabs, no need for library
We have a video coming out soon about adding tabs in the Arduino IDE to help organize code better - this is a different approach than creating a library, but I think still pretty helpful depending on the use case. If the functions are all related and share/act on similar data, then making a C++ class may be the way to go.
Tabs are great! Thanks for adding this.
So nice
Thanks!
You should use Arduino IDE 2.0
The Arduino IDE 2.0 is great! I love code completion, the movable serial monitor window, and moveable error console (among many other things). But, I am still having an issue with a lag in the serial monitor. When that gets worked out, I will probably make the switch.
What I still like about Arduino IDE 1.0 is that it is really simple, which can be a huge advantage for beginners.
Arduino appears to be an exception to C. It surprised me I can put a function below where it is used, even without prototyping.
The Arduino IDE has a build process that automatically creates prototypes for you (but sometimes it fails ;), which is why I usually always create prototypes for my functions. Thanks for the comment and for watching!
arduino.github.io/arduino-cli/0.20/sketch-build-process/
How do I install into my library? it is not in there.
Great question! If you go to tools > library manager and then search for the FastLED library you can one click install it there.
@@programmingelectronics Found it .Thanks
@@sandwon Great! Glad that helped!