Arduino - install and connect

  1. Get and install the Arduino IDE: https://www.arduino.cc/en/software/
  2. Open Arduino IDE
  3. Click arrow in “Select Board” (top left) – and select “Select other board and port”
  4. Type “uno” in search field, and select the “Arduino Uno”
  5. Choose the port by connecting USB from Arduino to see which new port is added.
  6. Open the example program “Blink”:
    File → Examples → 01.Basics → Blink
  7. Upload the program to the Arduino by clicking the arrow in top-left corner:

Begin coding the Arduino

Go through some examples in the Arduino IDE.
For each example you should:
— Read — Build — Program — Try — Change — Play —

Some good starting examples:
• File → Examples → 01.Basics → Blink
• File → Examples → 01.Basics → Fade
• File → Examples → 02.Digital → Button
• File → Examples → 02.Digital → Debounce

Use Neopixels with Arduino

1. Install Library “FastLED” by Daniel Garcia
• Tools → Manage Libraries…
• Search “fastled”
• Click “INSTALL”

2. Do some examples
• File → Examples → FastLED → Blink
• File → Examples → FastLED → ColorPalette
• File → Examples → FastLED → ?

3. Now make code to do the stuff you need
– copy and reuse example code when needed..