TranscriptI hope you've had fun while learning about electronics and programming! Let's summarize what you've learned so far. First of all, you created a circuit to light up an LED and went through some basic stuff about electricity, like voltage, current and resistance. You moved on to light up an LED by programming. You made a circuit using a programmable pin and used the pinMode and digitalWrite commands to get this done. You also learned to upload the program to the board. While refining your program you learned to use the delay command to time events. This way you got to blink an LED. You experienced in practice how the loop function repeats actions, and you also got to use the setup section where you define the basic settings that are not repeated. You probably made some mistakes in your code, as well, and learned it's not a big deal. Mistakes happen to everyone and fixing bugs is an important skill, too. In the end you did a final exercise. Either you connected more LEDs and programmed traffic lights, or you made observations to find materials and objects that work well with LEDs. Both of those exercises let you practice useful skills but the point of view was a bit different. And so it should be. There's just so many different ways to work with Arduino and I'm really happy if you find your own way and come up with projects that you like the best!
TranscriptIn the summary section you'll always find a list of the new commands you've used in the chapter. If you click the links of those commands you'll end up on the Arduino website and to a page called reference. Reference contains all the Arduino commands, and you can always go and learn how you're supposed to be using those commands. Let's have a look at the page for digitalWrite. The page for digitalWrite looks like this. There's a description on what the command is for and how it's used. Below that you can find how you should write it, and what values go inside the parentheses. And down here there's example code you can test on your own board. If you're in the middle of programming Arduino and you forget what a certain command is doing you can always do this. Go on top of the command and right-click. In the top down menu you can find this: "Find in Reference". And if you click it, it will open local help files. So this is a really useful way to check out quickly what each command does. All in all, remember the reference it's a super good tool.