Table Of Contentwww.it-ebooks.info
For your convenience Apress has placed some of the front
matter material after the index. Please use the Bookmarks
and Contents at a Glance links to access them.
www.it-ebooks.info
Contents at a Glance
About the Author �����������������������������������������������������������������������������������������������������������������xi
About the Technical Reviewer �������������������������������������������������������������������������������������������xiii
Acknowledgments ��������������������������������������������������������������������������������������������������������������xv
Introduction ����������������������������������������������������������������������������������������������������������������������xvii
■ Chapter 1: LEGO, Arduino, and The Ultimate Machine �������������������������������������������������������1
■ Chapter 2: Using Sensors with the Android ���������������������������������������������������������������������27
■ Chapter 3: Twitter Pet ������������������������������������������������������������������������������������������������������65
■ Chapter 4: RFID and the Crystal Ball �������������������������������������������������������������������������������89
■ Chapter 5: Animating the TARDIS ����������������������������������������������������������������������������������111
■ Chapter 6: Controlling LEGO Trains with Arduino ����������������������������������������������������������149
■ Chapter 7: Building a Light-Sensitive Box ���������������������������������������������������������������������165
■ Appendix A: Parts List ���������������������������������������������������������������������������������������������������183
Index ���������������������������������������������������������������������������������������������������������������������������������189
v
www.it-ebooks.info
Introduction
For 80 years, The LEGO Group has produced building toys for children to enjoy. As technology has advanced, they
have introduced some interactive components that were limited in different ways.
The Arduino is an open source microcontroller that allows interaction with all different forms of electronic
devices and sensors. It allows for many creative projects that can be controlled by a device that is a small,
low-powered computer.
By combining these two flexible systems, myriad projects can be built that can do almost anything—the only
limit is your imagination.
xvii
www.it-ebooks.info
Chapter 1
LEGO, Arduino, and The Ultimate
Machine
For years LEGO has produced their own computer based system known as Mindstorms. It gave a computer brain
to the plastic LEGO bricks that had been around for decades. While Mindstorms has advanced in the 15 years since
it was introduced, it was still limited based on the size of the LEGO Intelligent Brick and the available sensors and
motors. An alternative to using the LEGO Mindstorms is the Arduino microprocessor, a small computer that can make
use of any electrical components with some programming.
Introducing the Arduino
An Arduino (as seen in Figure 1-1) is an open source microcontroller that allows for programming and interaction;
it is programmed in C/C++ with an Arduino library to allow it to access the hardware. This allows for more flexible
programmability and the ability to use any electronics that can interface with the Arduino. Because the Arduino is
open source, the plans for the circuits are available online for free to anyone who wants to use and create their own
based on the schematics, as long as they share what they create. This allows for a lot of customizability in projects,
since people have built Arduinos of different sizes, shapes, and power levels to control their projects.
Figure 1-1. The Arduino microcontroller
1
www.it-ebooks.info
Chapter 1 ■ LeGO, arduinO, and the uLtimate maChine
The main advantages of using the Arduino over LEGO’s own motor systems are the open source base, the
expandability, and the sizes. With LEGO’s system, the user is locked into the pieces LEGO created. This can be a
hindrance with smaller projects where the Mindstorms NXT Intelligent Brick can be too large to easily incorporate or
hide the intelligence behind the project. With the smaller Arduino circuit board, less clearance is required to hold the
circuit board, which means more flexibility in the design of the project. A comparison of the Arduino and the LEGO
NXT brick can be seen in Figure 1-2.
Figure 1-2. The Arduino and the LEGO Mindstorms NXT Intelligent Brick
The Arduino itself may not be capable of fulfilling all the activities that you would like to carry out with it, but
there are circuit boards known as shields that snap on top of the Arduino circuit board to expand the usability of the
Arduino. Allowing the use of motors, adding Internet connectivity, making sounds with .wav files, and other activities
can be triggered through the use of these add-on boards, thus allowing the Arduino to be programmed to carry
out tasks it could not without them. As an example, Figure 1-3 shows an Ethernet shield that allows the Arduino to
connect to the Internet.
2
www.it-ebooks.info
Chapter 1 ■ LeGO, arduinO, and the uLtimate maChine
Figure 1-3. An Ethernet shield to allow the Arduino to talk to the Internet
Your First Arduino Program
Most commonly, when someone tries out a new computer language, they make the words “Hello World” appear on
the screen. The Arduino version of this is to make a light-emitting diode (LED) blink. By plugging the LED into two of
the ports on the Arduino and writing a simple program, the Arduino can turn the light on and off.
The first step is to put the LED into the Arduino. LEDs are specific to the way they are used. The LED needs
to be plugged in so that the longer end goes into a numbered pin and the shorter pin into the ground pin, or
the LED will not light up. Figure 1-4 shows the longer side in the socket labeled 13 and the shorter side in
the ground.
3
www.it-ebooks.info
Chapter 1 ■ LeGO, arduinO, and the uLtimate maChine
Figure 1-4. The LED plugged into the Ardunio
Once the LED is firmly placed in the Arduino, the next step is to connect it to a computer via USB cable.
The computer must have the Arduino software installed in order to program the Arduino. The software can be
downloaded for free at arduino.cc in the download section for your computer operating system of choice. Once it is
downloaded and installed, open the Arduino software. The following program can be found in File ➤ Examples ➤
01.Basics ➤ Blink or it can be entered by hand, as shown in Listing 1-1.
Listing 1-1. Basic Blink Program
/*
Blink
Turns on an LED on for one second, then off for one second, repeatedly.
This example code is in the public domain.
*/
// Pin 13 has an LED connected on most Arduino boards.
// give it a name:
int led = 13;
// the setup routine runs once when you press reset:
void setup() {
// initialize the digital pin as an output.
pinMode(led, OUTPUT);
}
4
www.it-ebooks.info
Chapter 1 ■ LeGO, arduinO, and the uLtimate maChine
// the loop routine runs over and over again forever:
void loop() {
digitalWrite(led, HIGH); // turn the LED on (HIGH is the voltage level)
delay(1000); // wait for a second
digitalWrite(led, LOW); // turn the LED off by making the voltage LOW
delay(1000); // wait for a second
}
The code in Listing 1-1 is the most basic program for an Arduino. It is read by the Arduino from the top down.
The first thing in the program is a global variable definition for the pin that has the LED. A global variable is defined
outside the setup() and loop() functions and can be accessed from anywhere in the program. The line int led=13;
defines the global variable named led to be an integer with the value of 13. Whenever the word led is used, the
program will interpret it as the number 13. Since the variable is defined before the words void setup(); it is what
is referred to as a global variable, which means any part of the program can access and make changes to it. If the
variable had been defined in the setup or loop sections (as defined below), it would only be a local variable that could
only be accessed by that section of code. It is worth noting that anything between the symbols /* and */ or on a line
after // are comments and will be ignored by the computer when it reads the program.
// the setup routine runs once when you press reset:
void setup() {
// initialize the digital pin as an output.
pinMode(led, OUTPUT);
}
Anything between the braces after setup() will be executed when the program first runs. Anything in there will
be run only once and never be looked at again. In this case, it using pinMode to tell the Arduino that it will be using
pin 13, where you defined led, to be used to send a signal out. It is notable that the pins can be used for either input or
output, but must be defined to do so.
// the loop routine runs over and over again forever:
void loop() {
digitalWrite(led, HIGH); // turn the LED on (HIGH is the voltage level)
delay(1000); // wait for a second
digitalWrite(led, LOW); // turn the LED off by making the voltage LOW
delay(1000); // wait for a second
}
Once the setup runs, it then executes whatever is between the braces after loop(). The difference is that once
the section in the loop() starts, it will start that code over again once it reaches the end. Pin 13 on the Arduino has
only two states, off and on. The digitalWrite function tells the light to turn on and off based on whether it is told to
be HIGH or LOW. Putting a delay between the digitalWrite statements provides the ability to see the light turn on
and off rather than just a strobe effect. The delay statement will wait as long as the number in the parentheses is, in
thousandths of a second.
With the code written, it needs to be uploaded to the Arduino. By connecting it with a standard USB cable, the
computer can talk to the Arduino. Clicking the arrow in the upper right hand corner will compile the code and upload it
to the Arduino. Once installed, it will begin to execute after several seconds and the LED will begin to blink on and off.
5
www.it-ebooks.info
Chapter 1 ■ LeGO, arduinO, and the uLtimate maChine
Programming the Ultimate Machine
The Ultimate Machine, also known as The Useless Machine, is considered the most efficient machine ever made.
Its only task is to turn itself off when it is turned on. The original Ultimate Machine was created by Claude Shannon
when he was working at Bell Labs in 1952. The following sections explain the steps involved.
Assembling the Arduino and Motor
In order to build the Useless Machine, a motor is required. To drive the motor, a motor shield will need to be placed
on top of the Arduino. While there are a few different shields that would allow for a motor to connect to the Arduino,
we will be using the Adafruit Industries motor shield because we can use it to drive the different kinds of motors
you will be using in different projects in this book. Figure 1-5 shows the motor shield from Adafruit Industries in its
unassembled form.
Figure 1-5. The unassembled motor shield
There is often considered a do-it-yourself (DIY) aspect to open source hardware, and sometimes manufactures will
sell products like shields with some assembly required. With some basic soldering knowledge, they are not too complex
to put together. The instructions on how to assemble it can be found at www.ladyada.net/make/mshield/solder.html.
Figure 1-6 shows the motor shield assembled.
6
www.it-ebooks.info
Description:We all know how awesome LEGO is, and more and more people are discovering how many amazing things you can do with Arduino. In Arduino and LEGO Projects, Jon Lazar shows you how to combine two of the coolest things on the planet to make fun gadgets like a Magic Lantern RF reader, a sensor-enabled LEG