Published on

Arduino IDE Setup

Authors

In this post, you will learn how to set up the Arduino IDE and upload code to the Arduino UNO board via USB Cable through easy-to-follow steps.

Step 1: Download the the IDE

  • Go to the Arduino website and download the desired IDE Version for your computer. Arduino might ask you to donate money. If you want to donate money, click “Contribute and Download.” Otherwise, click “Just Download.”
Screenshot of Arduino website

Step 2: Installation Setup (Mac)

  • Extract the ZIP file
  • Open the IDE from the extracted file

Step 3: Connect the Arduino to you computer using the USB Connector

Step 4: Configure Board

  • Open the IDE
  • Select “Tools” → “Board” → “Arduino AVR Boards” → “Arduino UNO” on the menu bar
  • Select “Tools” → “Port” → “COM (Arduino UNO)” on the menu bar

Step 5: Check if you can upload a program!

  1. Open the example “Blink” Program by selecting “File” → “Examples” → “01.Basics” → “Blink”
Screenshot of Arduino website

You should have code opened that looks similar to this:

Screenshot of Arduino website
  1. Upload the code by clicking the upload button (right pointing arrow) at the top-left corner.
Screenshot of Arduino website
  1. The LED on your board should be blinking every second.
Screenshot of Arduino website

Great! Now you are ready to begin using your Arduino!