Getting Familiar With Arduino IDE

Introduction

 
Arduino
 
Figure: Arduino
 
It is the Arduino IDE that you use to write code for Arduino and Arduino compatible boards. In the previous article, we have downloaded Arduino software and done the setup for MediaTek LinkIt one board which is an Arduino compatible board. Before running our first sketch, let’s get familiar with the development environment ‘Arduino IDE’.
 
Arduino IDE is a development environment which is a program where you write code, upload it to the board and check for errors. If you open the Arduino IDE in Windows OS it will look familiar to this.
 
Arduino IDE in Windows OS
 
Figure: Arduino IDE in Windows OS
 
As you can see here, when you open the IDE it already contains two blank functions which are the default functions, about these we will learn in the next part. The Arduino IDE looks simple, let’s get a brief overview of it.
 
The IDE is split into the following four parts:
  1. File menu at the top
  2. Toolbar below this,
  3. Code window
  4. Message window
The buttons at toolbar provide easy access to most commonly used functions like Verify, New, Upload, Open, Save, Serial Monitor.
  • Verify: This is used to check that your code is correct before uploading it to the board.
  • Upload: Used to upload the code to your board.
  • New: This button creates a completely new sketch with two default functions in another window. It is named with the current date by default which you have to save before uploading.
  • Open: Opens a sketch.
  • Save: Save the current sketch.
  • Serial Monitor: This is a very useful tool for debugging the code. It opens another window that displays the serial data being sent out by the board.
     
    Serial Monitor
     
    Figure: Serial Monitor
On the File menu, you will get the option to Create, Open, Save, and Print a sketch. There is a sketchbook option where you can put some sample sketch and take a look at them.
 
Adding Sketchbook to Arduino IDE
  • Open Arduino IDE.
  • Select “File" -> "Preferences”.
     
    Preferences
     
    Figure: Preferences
     
  • View the “Sketchbook Location” field.
  • Click “Browse” and copy the Sketches into the resulting folder and rename it with something appropriate.
With the Arduino IDE version 1.6.4 and greater, you can easily add 3rd party boards directly from the stock IDE by adding the URL in Preferences under the File menu.
 
In examples, you will find many sample programs that come with Arduino IDE.
 
In the Sketch tab, you will find options to Verify, Compile, Upload Code, and option to import the library.
 
In the Tools menu, you will find the option to AutoFormat your code and make it look nicer. Here you can select the COM port to which your board is connected, and you can choose your board from Board Manager.
 
The final option is the Help Menu where you can find information about the IDE and links to the Arduino website and other useful pages.
 
Now you have learned to use the Arduino IDE and its components and buttons. Arduino IDE is pretty simple, you can easily get your hands on it by running a few sketches. Now you can make the hardware work with the software.
 
Previous Article: Getting Started With LinkItOne