Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arduino Essentials
Arduino Essentials

Arduino Essentials: Enter the world of Arduino and its peripherals and start creating interesting projects

eBook
$13.98 $19.99
Paperback
$32.99
Subscription
Free Trial
Renews at $19.99p/m

What do you get with a Packt Subscription?

Free for first 7 days. $19.99 p/m after that. Cancel any time!
Product feature icon Unlimited ad-free access to the largest independent learning library in tech. Access this title and thousands more!
Product feature icon 50+ new titles added per month, including many first-to-market concepts and exclusive early access to books as they are being written.
Product feature icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Product feature icon Thousands of reference materials covering every tech concept you need to stay up to date.
Subscribe now
View plans & pricing
Table of content icon View table of contents Preview book icon Preview Book

Arduino Essentials

Chapter 2. The Arduino Development Environment

In this chapter, I'll show you how to get up and running with the Arduino development environment. We will download and install it, and we will take a tour through all its menus and commands. We will finish by uploading a first sketch to your board so that you can confirm that all that is needed to begin is working correctly.

A multiplatform tool

One of the things I like the most about the Arduino software is that it is truly multiplatform, which means that it is exactly the same environment whether you run it under OS X, Windows, or Linux. You could find some differences in the installation process of every operating system and differences to get it up and running, but once you have it up and running, it is just the same in any platform.

So, let's go ahead and present to you the whole process to make it run under the operating system of your choice.

Downloading the package

The first thing you have to do is go to the Arduino site's download section at http://Arduino.cc/en/Main/Software and choose the right package for your operating system and the software branch that best suits your board.

At the time of writing this, there are two different branches. I'll recommend that you use the Arduino 1.0.X stable branch unless you are going to work with Arduino Yún or Due; in that case, you'll have to choose the 1.5.X branch that, at the time of writing this, is a beta version and, therefore, could be a little unstable or could lead to some errors. However, I have to say that I have been working for more than a year with the 1.5.X branch to program both Arduino Uno and Arduino Yún, and I haven't seen any bugs.

On the Arduino site, you will find precompiled packages for Mac OS X, Windows, and Linux and even a source code package.

Let's take a closer look at each of the supported operating systems.

Windows

For Windows...

Installing the software

We have seen the downloading considerations for every operating system; let's now go on to see how to install the package for each of them.

Windows

Under Windows, using the Windows Installer package is quite simple and doesn't require any special consideration.

If you opted for the compressed package, you have to only uncompress it with an archive uncompressor such as WinZIP to make it available, which is not too hard.

Mac OS X

Under Mac OS X, the installation of the application consists only of dragging the application icon to the Applications folder of your computer. Simple.

In the latest versions of Mac OS X, Java may not be preinstalled; if this is the case, you should go to the Java official website at http://www.java.com/en/download/ and download it.

Linux

Given the diversity of different distributions and the packages' dependencies system on which Linux relies, you should install some of them before you can run the Arduino development environment.

Thanks...

Installing the drivers

As it is a USB device, the Arduino board might need its own drivers to be installed before your computer can talk to it.

The most recent boards, such as the Arduino Uno or the Arduino Mega 2560 board, don't need any special drivers to be installed. If you are using an older model, such as the Diecimilia board or any other board with an FTDI driver chip like the one shown in the following screenshot, you will have to install the specific drivers:

Installing the drivers

FTDI Chip

You can download the driver's version for your operating system right from the FTDI manufacturer page at http://www.ftdichip.com/Drivers/VCP.htm.

We will provide brief instructions on how to install these drivers for the operating system of your choice.

Windows

Under Windows, the installation may be a little tricky due to the fact that Windows will do its best to recognize the board and locate appropriate drivers for it, failing most of the times in doing so. To get the drivers up and running, perform the following...

Running the Arduino development environment for the first time

Well, it may have seemed more complicated than it really was, but finally, you have your programming environment ready to work. It's time to create our first test, take a tour of it, and meet all its parts and structures.

On the first run, the Arduino development environment should look like this:

Running the Arduino development environment for the first time

Arduino development environment

Basically, it's divided into three sections:

  • The toolbar at the top with buttons for the more usual commands
  • The code editor in the middle, where you will write your sketch, as we commonly call an Arduino program's code
  • The message area at the bottom, where you will get information about the status of your sketch and possible location of errors in it

Let's take a closer look at each one of these zones so that you can begin to use them.

The toolbar

In the toolbar, you're going to find a total of six buttons to call the more usual commands of the development environment.

The toolbar

Buttons on the toolbar...

Preflight checks

In order to upload your first sketch to the Arduino board, you have to first make sure that the Arduino development environment knows two very important things about your board:

  • The type of Arduino board you have
  • The serial port through which it is connected to your computer

Both parameters have to be specified using the Tools menu in the menu bar and by selecting the Board and Serial Port commands.

In the next screenshot, you can see all available options when selecting the board type:

Preflight checks

All board models available through the Board command in the Tools menu

Being a teacher myself and having worked with Arduino boards with my students for some years, I have found that the most common mistake they make the first time they try to upload their first sketch to the Arduino board is the wrong selection of the serial port. If you are like them and don't know for certain which one of the available serial ports in the Serial Port command to select, don't worry. In the worst case...

A multiplatform tool


One of the things I like the most about the Arduino software is that it is truly multiplatform, which means that it is exactly the same environment whether you run it under OS X, Windows, or Linux. You could find some differences in the installation process of every operating system and differences to get it up and running, but once you have it up and running, it is just the same in any platform.

So, let's go ahead and present to you the whole process to make it run under the operating system of your choice.

Downloading the package


The first thing you have to do is go to the Arduino site's download section at http://Arduino.cc/en/Main/Software and choose the right package for your operating system and the software branch that best suits your board.

At the time of writing this, there are two different branches. I'll recommend that you use the Arduino 1.0.X stable branch unless you are going to work with Arduino Yún or Due; in that case, you'll have to choose the 1.5.X branch that, at the time of writing this, is a beta version and, therefore, could be a little unstable or could lead to some errors. However, I have to say that I have been working for more than a year with the 1.5.X branch to program both Arduino Uno and Arduino Yún, and I haven't seen any bugs.

On the Arduino site, you will find precompiled packages for Mac OS X, Windows, and Linux and even a source code package.

Let's take a closer look at each of the supported operating systems.

Windows

For Windows, there are two different precompiled...

Installing the software


We have seen the downloading considerations for every operating system; let's now go on to see how to install the package for each of them.

Windows

Under Windows, using the Windows Installer package is quite simple and doesn't require any special consideration.

If you opted for the compressed package, you have to only uncompress it with an archive uncompressor such as WinZIP to make it available, which is not too hard.

Mac OS X

Under Mac OS X, the installation of the application consists only of dragging the application icon to the Applications folder of your computer. Simple.

In the latest versions of Mac OS X, Java may not be preinstalled; if this is the case, you should go to the Java official website at http://www.java.com/en/download/ and download it.

Linux

Given the diversity of different distributions and the packages' dependencies system on which Linux relies, you should install some of them before you can run the Arduino development environment.

Thanks to the package...

Installing the drivers


As it is a USB device, the Arduino board might need its own drivers to be installed before your computer can talk to it.

The most recent boards, such as the Arduino Uno or the Arduino Mega 2560 board, don't need any special drivers to be installed. If you are using an older model, such as the Diecimilia board or any other board with an FTDI driver chip like the one shown in the following screenshot, you will have to install the specific drivers:

FTDI Chip

You can download the driver's version for your operating system right from the FTDI manufacturer page at http://www.ftdichip.com/Drivers/VCP.htm.

We will provide brief instructions on how to install these drivers for the operating system of your choice.

Windows

Under Windows, the installation may be a little tricky due to the fact that Windows will do its best to recognize the board and locate appropriate drivers for it, failing most of the times in doing so. To get the drivers up and running, perform the following steps...

Left arrow icon Right arrow icon

Description

If you are a hobbyist who wants to develop projects based on Arduino as the main microcontroller platform or an engineer interested in finding out what the Arduino platform offers, then this book is ideal for you. Some prior knowledge of the C programming language is required.

Who is this book for?

If you are a hobbyist who wants to develop projects based on Arduino as the main microcontroller platform or an engineer interested in finding out what the Arduino platform offers, then this book is ideal for you. Some prior knowledge of the C programming language is required.

What you will learn

  • Select the correct Arduino board to meet the prerequisites of your project
  • Set up a working Arduino development environment and get to grips with all of its inner workings
  • Work with digital and analog outputs to act on external devices
  • Sense your environment in a digital or analog way by using different types of sensors such as potentiometers, photocells, or thermistors
  • Develop timebased projects that will manage the time in a precise manner
  • Make your project interact with other devices via serial communications
  • Use interrupts to deal with unexpected events
  • Get familiar with a complete realworld project that summarizes all the concepts learned throughout the book

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Feb 24, 2015
Length: 206 pages
Edition : 1st
Language : English
ISBN-13 : 9781784398569
Category :
Tools :

What do you get with a Packt Subscription?

Free for first 7 days. $19.99 p/m after that. Cancel any time!
Product feature icon Unlimited ad-free access to the largest independent learning library in tech. Access this title and thousands more!
Product feature icon 50+ new titles added per month, including many first-to-market concepts and exclusive early access to books as they are being written.
Product feature icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Product feature icon Thousands of reference materials covering every tech concept you need to stay up to date.
Subscribe now
View plans & pricing

Product Details

Publication date : Feb 24, 2015
Length: 206 pages
Edition : 1st
Language : English
ISBN-13 : 9781784398569
Category :
Tools :

Packt Subscriptions

See our plans and pricing
Modal Close icon
$19.99 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
$199.99 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just $5 each
Feature tick icon Exclusive print discounts
$279.99 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just $5 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total $ 136.97
Python Programming for Arduino
$54.99
Arduino Essentials
$32.99
Arduino Development Cookbook
$48.99
Total $ 136.97 Stars icon

Table of Contents

11 Chapters
1. Meeting the Arduino Family Chevron down icon Chevron up icon
2. The Arduino Development Environment Chevron down icon Chevron up icon
3. Interacting with the Environment the Digital Way Chevron down icon Chevron up icon
4. Controlling Outputs Softly with Analog Outputs Chevron down icon Chevron up icon
5. Sensing the Real World through Digital Inputs Chevron down icon Chevron up icon
6. Analog Inputs to Feel Between All and Nothing Chevron down icon Chevron up icon
7. Managing the Time Domain Chevron down icon Chevron up icon
8. Communicating with Others Chevron down icon Chevron up icon
9. Dealing with Interrupts Chevron down icon Chevron up icon
10. Arduino in a Real Case – Greenhouse Control Chevron down icon Chevron up icon
Index Chevron down icon Chevron up icon

Customer reviews

Rating distribution
Full star icon Full star icon Full star icon Full star icon Full star icon 5
(5 Ratings)
5 star 100%
4 star 0%
3 star 0%
2 star 0%
1 star 0%
Miguel Bueno Cobos May 06, 2015
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Arduino is not a new kid in the block, and many things are written about it, but you can be sure that not everything written is useful. With this book Francis Perea will help you if you are new to microcontrolers or you just want to have a nice reference around. The autor knows how to focus on the procedure and the key facts that you have to understand to keep you improving your skills about Arduino. He will guide you in a series of step-by-step assemblies using most common components and with a very well design path to Arduino Knowledge. Definitely a must read and a must have reference book about Arduino.
Amazon Verified review Amazon
Rocío Criado Díaz Apr 22, 2015
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Arduino es un mundo nuevo para mi. He llegado a este libro por la experiencia de sus conocidos autores en la materia con el fin de formarme desde cero. Tengo un mundo de posibilidades que puedo practicar gracias a los claros ejemplos de todas y cada una de sus posibilidades. Estoy consiguiendo resultados interesantes en la docencia con los alumnos de mi clase. Es una referencia práctica para completar y adquirir un buen conocimiento sobre la electrónica y su aplicación inmediata. Lectura y compra recomendada.
Amazon Verified review Amazon
Jose Checa Apr 22, 2015
Full star icon Full star icon Full star icon Full star icon Full star icon 5
For a long time I've been reading books as a beginner / advanced Arduino , especially to meet the training needs of people who are new , including very early levels . It is not easy to have a good guide to all the possibilities of Arduino while it easy to assimilate by readers. In this book I found all this and more. All kinds of examples that introduce from the simplest to the most complicated work , easy to digest and implement that cover all needs. A global version of all well explained possibilities. I highly recommend it .
Amazon Verified review Amazon
Amazon Customer Jan 29, 2019
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Great read about the current Arduino boards out there .. Great reference for those who want to learn about these cool boards and how to hook up hard devices and parts to them . Great place to kick start using the Arduino boards.
Amazon Verified review Amazon
Rocío Criado Díaz Apr 22, 2015
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Arduino is a new world for me !! I came to this book through the experience of their well-known authors in the field and to learn from scratch. I have a world of possibilities that can go through the clear examples of each and every one of its possibilities . I am getting interesting results in teaching with students in my class. It is a handy reference to complete and acquire a good knowledge of electronics and immediate implementation. Reading and recommended purchase .
Amazon Verified review Amazon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

What is included in a Packt subscription? Chevron down icon Chevron up icon

A subscription provides you with full access to view all Packt and licnesed content online, this includes exclusive access to Early Access titles. Depending on the tier chosen you can also earn credits and discounts to use for owning content

How can I cancel my subscription? Chevron down icon Chevron up icon

To cancel your subscription with us simply go to the account page - found in the top right of the page or at https://subscription.packtpub.com/my-account/subscription - From here you will see the ‘cancel subscription’ button in the grey box with your subscription information in.

What are credits? Chevron down icon Chevron up icon

Credits can be earned from reading 40 section of any title within the payment cycle - a month starting from the day of subscription payment. You also earn a Credit every month if you subscribe to our annual or 18 month plans. Credits can be used to buy books DRM free, the same way that you would pay for a book. Your credits can be found in the subscription homepage - subscription.packtpub.com - clicking on ‘the my’ library dropdown and selecting ‘credits’.

What happens if an Early Access Course is cancelled? Chevron down icon Chevron up icon

Projects are rarely cancelled, but sometimes it's unavoidable. If an Early Access course is cancelled or excessively delayed, you can exchange your purchase for another course. For further details, please contact us here.

Where can I send feedback about an Early Access title? Chevron down icon Chevron up icon

If you have any feedback about the product you're reading, or Early Access in general, then please fill out a contact form here and we'll make sure the feedback gets to the right team. 

Can I download the code files for Early Access titles? Chevron down icon Chevron up icon

We try to ensure that all books in Early Access have code available to use, download, and fork on GitHub. This helps us be more agile in the development of the book, and helps keep the often changing code base of new versions and new technologies as up to date as possible. Unfortunately, however, there will be rare cases when it is not possible for us to have downloadable code samples available until publication.

When we publish the book, the code files will also be available to download from the Packt website.

How accurate is the publication date? Chevron down icon Chevron up icon

The publication date is as accurate as we can be at any point in the project. Unfortunately, delays can happen. Often those delays are out of our control, such as changes to the technology code base or delays in the tech release. We do our best to give you an accurate estimate of the publication date at any given time, and as more chapters are delivered, the more accurate the delivery date will become.

How will I know when new chapters are ready? Chevron down icon Chevron up icon

We'll let you know every time there has been an update to a course that you've bought in Early Access. You'll get an email to let you know there has been a new chapter, or a change to a previous chapter. The new chapters are automatically added to your account, so you can also check back there any time you're ready and download or read them online.

I am a Packt subscriber, do I get Early Access? Chevron down icon Chevron up icon

Yes, all Early Access content is fully available through your subscription. You will need to have a paid for or active trial subscription in order to access all titles.

How is Early Access delivered? Chevron down icon Chevron up icon

Early Access is currently only available as a PDF or through our online reader. As we make changes or add new chapters, the files in your Packt account will be updated so you can download them again or view them online immediately.

How do I buy Early Access content? Chevron down icon Chevron up icon

Early Access is a way of us getting our content to you quicker, but the method of buying the Early Access course is still the same. Just find the course you want to buy, go through the check-out steps, and you’ll get a confirmation email from us with information and a link to the relevant Early Access courses.

What is Early Access? Chevron down icon Chevron up icon

Keeping up to date with the latest technology is difficult; new versions, new frameworks, new techniques. This feature gives you a head-start to our content, as it's being created. With Early Access you'll receive each chapter as it's written, and get regular updates throughout the product's development, as well as the final course as soon as it's ready.We created Early Access as a means of giving you the information you need, as soon as it's available. As we go through the process of developing a course, 99% of it can be ready but we can't publish until that last 1% falls in to place. Early Access helps to unlock the potential of our content early, to help you start your learning when you need it most. You not only get access to every chapter as it's delivered, edited, and updated, but you'll also get the finalized, DRM-free product to download in any format you want when it's published. As a member of Packt, you'll also be eligible for our exclusive offers, including a free course every day, and discounts on new and popular titles.