Skip to content

Latest commit

 

History

History
54 lines (36 loc) · 1.92 KB

00-electricity-arduinos.md

File metadata and controls

54 lines (36 loc) · 1.92 KB

Electricity

  • Electricity is a circle
  • Inputs and outputs
  • Digital vs Analog

Hardware

  • boards
  • wires
  • inputs/sensors
  • outputs/LEDs, motors

Software

Arduino IDE

Arduino IDE

(image source: https://learn.sparkfun.com/tutorials/sik-experiment-guide-for-arduino---v32/all)

  1. Verify: Compiles and approves your code. It will catch errors in syntax (like missing semi-colons or parenthesis).
  2. Upload: Sends your code to the RedBoard. When you click it, you should see the lights on your board blink rapidly.
  3. New: This buttons opens up a new code window tab.
  4. Open: This button will let you open up an existing sketch.
  5. Save: This saves the currently active sketch.
  6. Serial Monitor: This will open a window that displays any serial information your RedBoard is transmitting. It is very useful for debugging.
  7. Sketch Name: This shows the name of the sketch you are currently working on.
  8. Code Area: This is the area where you compose the code for your sketch.
  9. Message Area: This is where the IDE tells you if there were any errors in your code.
  10. Text Console: The text console shows complete error messages. When debugging, the text console is very useful.
  11. Board and Serial Port: Shows you what board and the serial port selections

After Install Steps

Sketches

  • C/C++ programming language

Loading Sparkfun SIK Code

Circuit Experiments