Search more

Search

Share post

Sections

Getting Familiar With Arduino IDE

Arduino IDE is a great tool to start your electronics journey. It's simple to get started with and have a large community to help you along the journey. In this tutorial, you will learn how to install and set up Arduino IDE. Additionally, you will learn how to upload your first example sketch to the Arduino board.
Getting started with Arduino IDE, Featured image consist of Arduino IDE starting view and Arduino uno board

This tutorial is meant for beginners who want to start learning Arduino IDE and build their first Arduino project.

Table Of Contents :

Required Materials:

  1. A Computer

    OS: Windows, Mac, or Linux. In this tutorial, we will use Windows.

  2. A Arduino Development Board

    You can use your favorite Arduino development board, But In this tutorial, we will use the Arduino UNO board. As Arduino UNO is the most popular board among the Arduino family.

    Arduino UNO Bord
  3. A USB A to B Cable

    In case you are using Arduino UNO, Arduino Duemilanove, Arduino Mega 2560, etc you need a standard USB A to B cable (also used for printers).

    USB A to B Programmer Cable
  4. A USB A to Mini B Cable

    But In case you are using Arduino Nano, you need a standard USB A to Mini B cable.

    USB A to Mini B Programmer Cable

Let’s Download Arduino IDE:

For downloading Arduino IDE, we will first go to the official Arduino website.

You will see a different download option on the right side of the page for different operating systems.

In this tutorial, we will use Windows, therefore, clicking on the windows zip file option. Download the file to your desired directories.

Note:- Downloading and using Arduino IDE is free of cost. But if you think the Arduino community has changed your life, consider a small contribution to the community before downloading. It will help the community to grow more.

Arduino IDE official website to downloaded IDE

Once the download is finished, you will see a Zip file name Arduino with its latest version in your download location.
Unzip or extract the zip file at your desired location.

Extract the Arduino IDE zip file to your proffered location

Launch Arduino IDE:

After the file is extracted successfully, open the folder, and locate the file type as application.exe with an Arduino symbol.
This file will open the Arduino IDE software; therefore, it is better to create a desktop shortcut for easy navigation next time.
After that, open it by double-clicking it.
You will see an Arduino IDE starting image while it’s opening. We have installed Arduino IDE successfully.

Arduino IDE appliction file

Quick Navigation Buttons In Arduino IDE:

There are few handy quick navigation buttons in the top section of Arduino IDE.

listing Arduino IDE Quick navigation buttons

Here is a short overview of the usage of all buttons-

  1. Verify Button – By pressing this button, it will compile your project code. 
  2. Upload Button -It will first compile the code, and then it will upload it to your Arduino board.
  3.  New Button – It will open a new project window.
  4. Open Button – Press this to open examples and recent projects.
  5. Save Button – To save your current project.
  6. Serial Monitor – To open Serial monitor. It is used to send and receive messages to and from the Arduino board. Also used for Debugging purposes.

Open Your First Project In Arduino IDE:

Once the Arduino IDE Software started, we have two main options:-

  • Create a new project.
  • Open an examples project.

Apart from this, we have options for open recent projects or open existing saved projects.

Create A New Project:

To create a new project, select File → New.

Clicking New will open a new project window, and you can start writing your new project code.

You can also press the New Button in the quick navigation section to create a new project.

Likewise, we can use the shortcut Ctrl+N to open a new project.

Creating a new project in Arduino IDE

It’s a good practice to save your new project at your desired project location. You can press the Save Button or use the shortcut Ctrl+S.

Open an examples project:

To open an existing example project, select File → Example.

Inside example, you will find all default example that comes with Arduino IDE installation. Additionally, when you add any external libraries, the examples of that particular libraries will also be shown in the list.

You can also open examples by pressing the Open Button.

For this tutorial, we will select a famous blink example, select Example → Basics → Blink.

Opening blink example code in Arduino IDE

Blink example is the first step for the learning curve. Blink example will turn ON and OFF the onboard LED in your Arduino Board at an interval of 1 second.

Blink example program in Arduino software

If you want to learn different methods of blinking Arduino LED, you can check out the tutorial for 6 Simple Ways To Blink Arduino LED.

Power Up Your Arduino Board:

We will use Arduino UNO for this tutorial, but you can use any Arduino compatible boards such as Nano, Mega, Leonardo, and many more.

You need to connect the Arduino board to your computer using the USB cable type A to B if you are using(Arduino UNO, Arduino Duemilanove, Mega, etc.) or USB type A to Mini B if you are using Arduino Nano.

 After the connecting, The green power LED (labeled as PWR or ON) should glow.

Right now, your Arduino board will take supply from your computer’s USB port. You can also provide an external supply to your Arduino boards; like in Arduino UNO, you can add an external supply less than 12v from its DC jack.

Note:- most of the computer’s USB ports are only capable of delivering less than 0.5A of current. Therefore if your Arduino project current consumption is greater than that, we recommend using an external power supply or a good USB hub.

If, in case, you are using Arduino Diecimila, make sure that your Arduino Diecimila board is configured to draw power from the USB connection. The power sours are selected from the jumper wires that fit onto two of the three pins between the USB and power jacks.

Selecting your Arduino board:

Now we will select the Arduino board that we are using.

Note: It is important to select the right Arduino board that you are using not to get compiling or uploading errors.

We will select Arduino UNO as our board for this tutorial. As per the latest update in Arduino IDE, they have categorized each board based on their architecture. Arduino UNO works on the Atmega328p microcontroller based on AVR architecture; therefore, Arduino IDE has a category named Arduino AVR boards.

To select Arduino UNO board Go to Tools → Board → Arduino AVR boards → Arduino UNO.

Selecting Arduino UNO board in Arduino IDE

You can select different Arduino board which you are using by following same steps.

Select Your Serial Port In Arduino IDE:

Now you have to tell the Arduino IDE that in which USB COM port you have connected your board.

To select the appropriate COM port, Go to the Tools → Serial Port.

After opening the Serial Port menu, you will find your COM Port automatically with your board name. Select the COM Port, which matches your board name.

Selecting correct Serial Port in Arduino IDE

Most of you reading this tutorial this far will be using Arduino IDE and Arduino board for the first time; therefore, there are chances that you will not see any COM port in the port section. Therefore you need to install COM port drivers.
In MAC and Linux, it will be done while installing Arduino IDE.
Skip this step if you see the proper COM port in Arduino IDE.

Installing COM Port Drivers In Windows

You need to follow these simple steps to install new COM port drivers.

  1. Open Device manager from the start window.
  2. Navigate to ports(COM & LPT). Inside that, you will find an Unknown Device. If not found, see inside Other Devices
  3. Right-click on that and choose the “Update Driver Software” option.
  4. Next, choose the “Browse my computer for driver software” option.
  5. Finally, navigate to and select the driver file named “arduino.inf”, located in the “Drivers” folder of the Arduino Software download (not the “FTDI USB Drivers” sub-directory). If you are using an old version of the IDE (1.0.3 or older), choose the UNO driver file named “Arduino UNO.inf”.
  6. Driver installation is done now.

Uploading To Arduino Board

In this tutorial, we have used a blink example; therefore, we know that there will be no errors in the code. Therefore we will not check the code by clicking Verify Button.

Note:- If you have written your code for the project. Then it is good practice to Verify your code before uploading it. By doing this, you will get to know any errors left in your code while compiling.

Now click the Upload Button, And you will see that code is compiling.

Displaying location of Upload button inside Arduino IDE

Additionally, you will see the progress bar in the bottom right corner while uploading or compiling your code.

Displaying Progress bar while uploding program in Arduino board


After successful compiling, it will start uploading code to your board. Now you will see RX and TX LED’s on Arduino UNO will flash quickly; it indicates that the program is being flashed in our board over a serial port.

You will see Done Uploading written in the bottom section of Arduino IDE once the program is successfully uploaded.

Showing done uploding message once code is uploaded in arduino board

Outcome

After uploading the blink example, you will see an onboard LED in the Arduino UNO board that will start blinking. Default delay for LED ON and OFF is 1 second you can change in by changing vale in the delay function used in the program.

Note:- Delay function in Arduino IDE takes input in milliseconds; therefore, delay 1000 will be equal to 1 second.

Arduino LED blinking example gif for led on and off

The current Arduino IDE doesn’t have a feature that a modern IDE should have. Therefore to overcome this gap Arduino community has come up with an Arduino2.0-Beta.

Check out the all-new features that Arduino 2.0 has for considering it as a modern IDE.

Getting Smarter with Arduino IDE 2.0

Conclusion

In this tutorial, you have controlled a Digital pin of an Arduino Board to blink that tiny LED. It’s just a starting step towards the exciting journey ahead. 

Feel the power of your code “What you write will be executed by the controller“.

If you want to learn more about Arduino Projects, consider subscribing to our weekly newsletter.

Subscribe to our weekly newsletter

Subscribe
Notify of
guest

0 Comments
Inline Feedbacks
View all comments

posts info

Subscribe to our weekly newsletter

STAY IN TOUCH WITH US

Subscribe to our weekly newsletter