Skip to main content

Command Palette

Search for a command to run...

Install and Use Arduino IDE

Download, Install and Use Arduino IDE in Windows

Updated
2 min read
Install and Use Arduino IDE
H

I'm a Multan, Pakistan based Mechanical Engineer. I push pixels, shuffle data, and slap my keyboard until everything works.

1. Download Arduino IDE Setup from Website

1.1 Open url: https://www.arduino.cc/en/software

Select the setup for your operating system

Arduino Website
Fig.1 - Arduino Download Page

1.2 Support or Just Download the Setup

Contribute
Fig.2 - Support Arduino

2. Open IDE Setup

IDE Setup
Fig.3 - Arduino Setup

2.1 Use Default Settings and click Install

Installing
Fig.4 - Installation Progress

2.2 Click Install to All Drivers Prompts

6.jpg
Fig.5 - Drivers Prompts

3. Open Arduino IDE

3.1 Arduino IDE is ready to use

Double Click Shotcut icon present on the desktop

7.jpg
Fig.6 - IDE Icon

3.2 Allow IDE to access the Internet

8.jpg
Fig.7 - Firewall Prompt

3.3 IDE Splash Screen

9.jpg
Fig.8 - IDE Splash Screen

3.4 IDE Default View

10.jpg
Fig.9 - IDE Default View

3.5 Menu Bar

New Library and Boards can be installed and Selected from the menu bar. A sketch can be compiled/uploaded/saved and created from this menu

12.jpg
Fig.10 - Menu Bar

3.6 Console

IDE Compilation/Uploading/Error Logs can be viewed from this console

13.jpg
Fig.11 - Console

3.7 Library Manager

Other Libraries can be Installed from Library Manager

15.jpg
Fig.12 - Library Manager

3.8 Boards Manager

Other boards can be installed/selected from the board manager

17.jpg
Fig.13 - Board Manager

3.9 Serial Monitor

Serial Monitor is used to read/write data to/from the serial device/arduino

serial monitor.jpg
Fig.14 - Serial Monitor

4. Example Codes

Example codes can be accessed from example menu.

11.jpg
Fig.15 - Example Codes

Arduino Uses C++ Language to Program the Board which is then compiled to machine code then uploaded to the board to run.

The code consist of two default functions

  • setup

Setup function runs once on start to setup I/O pins and to define/setup the default state of the device.

  • loop

Loop function runs forever in the loop

image.png
Fig.16 - Blink Example

Connect Arduino Microcontroller to your computer and Select your Board and Port and then click Upload to auto compile and upload the code to arduino. LED Builtin on the Board will start Blinking.

58 views