Arduino pinout
Screenshot from Sparkfun Intro to Arduino presentation |
The Arduino IDE
This is the Arduino IDE and the bare minimum sketch. This sketch consists of only two functions: setup() and loop(). In fact, it does nothing, so you should add your own code inside of them and, probably, some variable definition before setup().
Toolbar
Button
|
Function
|
Verify/Compile
|
Checks the code for errors
|
Upload
|
Uploads the current Sketch to the Arduino
|
New
|
Creates a new blank Sketch
|
Open
|
Shows a list of Sketches in your sketchbook
|
Save
|
Saves the current Sketch
|
Serial Monitor
|
Displays serial data being sent from the Arduino
|
Arduino recommended books and presentations
- Sparkfun Intro to Arduino
- Page 7. Arduino pinout.
- Pages 26 to 28. Solderless Breadboard.
- Pages 32 and 33. INPUT vs. OUTPUT.
- Page 34. Analog vs. Digital.
- Pages 36 to 38. Arduino IDE and settings.
- Pages 40 to 47. Blink.
- There is a review of basic concepts of electricity and electronics from page 16 to 25. Only if you need to review them.
- Arduino Starter Kit Manual. A complete beginners guide to the Arduino
- Pages 21 to 24. They explain the Blink example and how to change the delay to obtain different effects.
- Pages 28 to 30. Project 2 - SOS Morse code signaler. They explain how to use a for loop to repeat clusters of commands.
- Pages 31 to 32. Project 3 - Traffic lights.