During this unit, we explored the uses of Arduino and came to understand the basics of electronics like voltage, polarity, and parallel structure versus a system. I personally had never encountered any electronics before, so I also learned what resistors are, how to code on Arduino, and how certain hardware works.
This video shows the results of the mini-projects in snap circuits, Arduino, and soldering.
Soldering
Notes:
I had difficulty with coding a few of these programs, described below...
for (int i=8; i>0; i--)
On this line, it says “i>=0”.
This allows the code to get to array member 0. Before, the code just said “i>0”, so array member never turned off. Array member 2 was defined as Input 2 in the array, so the LED connected to Input 2 was the one that did not shut off.
Now that it says “i>=0”, Input 2 is included in the instructions of code and will now turn off.