Introduction
|
|
Installing arduino-cli
|
|
First Sketch
|
Arduino programs are called ‘sketches’ with a program file inside a directory.
Arduino programs have two functions: a ‘setup’ function that is run once, and a ‘loop’ function that runs forever.
|
Using the Breadboard
|
Breadboards allow for complex, temporary connections.
Pins can be turned ON or OFF.
Pulse Width Modulation turns pins on and off really fast.
|
Using Digital and Analog Pins
|
|
Using Serial Connections
|
A serial connection is birectional.
Serial connections exchange individual bytes.
Higher-level functions can help parse serial input.
|
Using Arduino Libraries
|
|
Using git for Arduino programs
|
|