Investigate

Choosing a LED

Choose a LED. LED stands for Light Emitting Diode. A diode only allows electricity to flow through it one way, so if you hook it up backwards it won’t work. (But it won’t be damaged, either. Don’t worry.)
The two leads (sometimes called “legs”) of an LED are called an anode and a cathode. The anode is the longer lead.

In electronics, the power supply is commonly called ‘+v’. The electrons flow from the +v to the ‘-v’ or ‘ground’ (‘gnd’). The amount of current flow (I) is measured in ‘amperes‘ or ‘amps‘ (A). The difference in value between the supply value and the ground value (V) is measured in ‘volts‘ (v).
(Note: the ground value is not always 0v)
As the current flows through a medium, it gets restricted by the nature of the medium. This is called ‘resistance‘ (R) and is measured in ‘ohms‘ (Greek letter Omega).
The connection of components is called a circuit as the current flows around from +v to ground.

There is a relationship between the volts, amps and ohms. This called “Ohm’s Law” – the voltage is equal to the current multiplied by the resistance. V = I.R
This can be rearranged so that the current flow is I = V/R and the resistance is R = V/I.
This law is used to calculate the values of the components needed in a circuit.

For example:
A red, yellow or orange LED can only handle up to 0.02A and passes through about 2.4V. The supply voltage is +5V. This means the resistor needs to reduce the the voltage to the LED at (5v – 2.4v) to a current of 0.02A, otherwise damage will occur. The blue and green LED can be treated the same in our case.
So, using Ohm’s Law, the minimum resistance needed for the LED circuit is
R = (5-2.4) / 0.02 -> 130 ohms.
Our kits have 220 ohm, 1000 (1k) ohm and 10k ohm resistors only.
So, we will use the 220 ohm resistors (red red black black brown bands) for LEDs.


Ohm’s Law

In Your Notebook:
Open a new page and put the title– “OHM’s LAW”
Write the three versions of Ohm’s Law inside a box.
Write three notes about Ohm’s Law.
Draw a coloured diagram of the bars for the three resistors in your kit.
Exercise: What size resistor is needed for a red LED for a supply of 15v?

Develop

Follow the instructions and develop each of the following LED tasks.

Draw a diagram of your circuit in your Notebook.

Take a photo of your device to paste into your Notebook.

Make any remarks, comments about your findings.

Show your work to your teacher.

“Blink” LED


Let’s begin our tour with the classic first Arduino project: blinking an LED (short for light-emitting diode which is like a little light bulb). Not only is this the simplest way to make sure that your Arduino is work­ing correctly, but it will also introduce you to a simple sketch. The Arduino can hold only one program at a time, so once you upload your sketch to your Arduino, that sketch will run every time the Arduino is switched on until you change it.
The Build
For this project we’ll use the Blink example sketch that comes with the IDE. The Blink program turns an LED on for 1 second and then off, repeatedly. The LED works only with current flowing in one direc­tion, so its longer wire must connect to a positive power connection. LEDs require a current-limiting resistor or else the bulb may burn out. There is a built-in resistor in pin 13 of the Arduino that we’ll use.
Follow these steps to set up your test:
 
1. Insert the longer, positive leg of the LED to pin number 13 on the Arduino, as shown in Figure below. Connect the shorter, negative leg to the GND pin next to pin 13.

2. Connect the Arduino to your computer with the USB cable.
3. Open the Arduino IDE on your computer, then choose File Examples Blinking LED from the drop-down menu. The sketch will appear in the main program area of the IDE.
4. In the IDE, click the Verify button to check that the sketch is working correctly.
5. Click the Upload button to send the sketch to your Arduino. Running this code should make your LED flash on and off.

LED Circuits

Required: Arduino board, Developer board (“breadboard”), USB cable
Materials needed: 3 x m-m jumper wires, 1 x LED, 1 x 220 ohm Resistor (R R Bk Bk Br)

LED CIRCUIT 1

Process: Connect components as shown in image above.
1. With a wire, connect ground from the Arduino (labeled GND) to the bottom row of the farthest right column of the bread board.
2. With a wire, connect power from where it says 5V (the V stands for voltage and this is where the electric power comes from) on the Arduino to the bottom row of the next to right column.
3. Connect the resistor with one end in h2 and the other end on the far right column (ground).
4. Connect the LED cathode (shorter leg) to f2. (This makes it connect to the resistor through the breadboard because they are on the same row.)
5. Connect the LED anode (longer leg) to f3.
6. Connect a wire from h3 to the next to right column (+5V).
7. Plug power into the Arduino.
8. The LED should light up. If it doesn’t, unplug power from the Arduino, check all of your connections and make sure you have not plugged the LED in backwards. Then try power again.

Congratulations, you have made your first circuit!

LED CIRCUIT 2

Process: Connect components as shown in image.
1. Let’s modify our circuit slightly so that the Arduino will be controlling the LED.
2. Take the wire from h3 and connect it to pin 13 of the Arduino.
3. You could use any pin, we are using pin 13 because the default program on the Arduino when you first get it blinks the “L” LED which is on pin 13 so we can check our circuit without any new software.
4. You should unplug your Arduino before making changes to the circuit. )

Coding:
1. Now let’s write a program to control the LED.
2. Each program must contain at least two functions.
3. A function is a series of programming statements that can be called by name.
setup() which is called once when the program starts.
loop() which is called repetitively over and over again as long as the Arduino has power.
4. So the shortest valid Arduino program (even though it does nothing) is:

1 void setup()
2 {
3 }
4
5 void loop()
6 {
7 }


In most programming languages, you start with a program that simply prints “Hello, World” to the screen.
The equivalent in the micro-controller world is getting a light to blink on and off.
This is the simplest program we can write to show that everything is functioning correctly.
Enter and save to a folder, the following “sketch” – programs in Arduino are known as “sketches”.

1 const int kPinLed = 13;
2
3 void setup()
4 {
5 pinMode(kPinLed, OUTPUT);
6 }
7
8 void loop()
9 {
10 digitalWrite(kPinLed, HIGH);
11 delay(500);
12 digitalWrite(kPinLed, LOW);
13 delay(500);
14 }

Control LED with a Push-button Switch

What is a push-button? Pushing a button causes wires under the button to be connected, allowing current to flow (called closed). When the button isn’t pressed, no current can flow because the wires aren’t touching (called open).

Process: Connect components as shown in image.
1. Connect the far right column (Ground) on the breadboard to GND on the Arduino.
2. Connect the next to right column (+) to 5V on the Arduino.
3. Put the push-button legs in e5, e7, f5, and f7. (If they won’t fit in these squares, turn the switch 90º (¼ of a turn) and try again.)
4. Connect h7 to the pin 2 on the Arduino.
5. Connect h5 to the far right column (ground).
6. Connect a 220 (red-red-black-black-brown) resistor with one end in h2 and the other end on the far right column (ground).
7. Connect the LED cathode (shorter leg) to f2. (This makes it connect to the resistor through the breadboard.)
8. Connect the LED anode (longer leg) to f3.
9. Connect h3 to pin 9 on the Arduino.

The push-buttons have four legs. When the button is pressed it connects the two legs on the right side together. (It also connects the two on the left, but we aren’t using those now.)
If the button is pressed, then the pin will be connected to ground (which we will see as LOW). If it isn’t pressed, the pull-up resistor will have it internally connected to +5V (which we will see as HIGH.)
Since we want the LED to light when the button is pressed, we write HIGH out when the value read from the pin connected to the button is LOW.
A few intermediate exercises:
1. Try this program and make sure it works. (If it doesn’t, rotate the button 90 degrees and try again.)
2. Change it so the LED is normally on and pressing the button turns it off.

Coding:
1 const int kPinButton1 = 2;
2 const int kPinLed = 9;
3
4 void setup()
5 {
6 pinMode(kPinButton1, INPUT);
7 digitalWrite(kPinButton1, HIGH); // turn on pull-up resistor
8 pinMode(kPinLed, OUTPUT);
9 }
10
11 void loop()
12 {
13 if(digitalRead(kPinButton1) == LOW){
14 digitalWrite(kPinLed, HIGH);
15 }

16 else{
17 digitalWrite(kPinLed, LOW);
1168
}
19 }

Multiple LEDs

Ok, so now it is time to hook up more LEDs so we can do more exciting patterns.
We will turn on the LEDs via the Pin (Port).

Process: Follow the diagram to connect the LEDs and resistors.

Coding:
1. Now, lets try a program that will let us make sure that all of our hardware is made correctly. It is often wise to write a small piece of software to test and make sure your hardware is correct rather than try your full software on the brand new hardware.
Code#1 below, sets up LEDs on pins 2-5 and then cycles through turning each LED on and then off.
const int kPinLed1 = 2;
const int kPinLed2 = 3;
const int kPinLed3 = 4;
const int kPinLed4 = 5;

void setup()
{
pinMode(kPinLed1, OUTPUT);
pinMode(kPinLed2, OUTPUT);
pinMode(kPinLed3, OUTPUT);
pinMode(kPinLed4, OUTPUT);
}

void loop()
{
// turn on each of the LEDs in order
digitalWrite(kPinLed1, HIGH);
delay(100);
digitalWrite(kPinLed2, HIGH);
delay(100);
digitalWrite(kPinLed3, HIGH);
delay(100);
digitalWrite(kPinLed4, HIGH);
delay(100);

// turn off each of the LEDs in order
digitalWrite(kPinLed1, LOW);
}

While this code works just fine, it isn’t very elegant and it seems like there isa lot of writing of very similar things and opportunities for mistakes. Let’s see how we can do a better job.

ARRAYS
An array is a collection of variables that are indexed with an index number. An
example will help us to understand – see Code#2 below.

const int k_numLEDs = 4;
const int kPinLeds[k_numLEDs] = {2,3,4,5}; // LEDs connected to pins 2-5


void setup()
{
for(int i = 0; i < k_numLEDs; i++){
pinMode(kPinLeds[i], OUTPUT);
}
}


void loop()
{
for(int i = 0; i < k_numLEDs; i++){
digitalWrite(kPinLeds[i], HIGH);
delay(100);
}
for(int i = k_numLEDs – 1; i >= 0; i–){
digitalWrite(kPinLeds[i], LOW);
delay(100);
)
)


Can you figure out what this does? If not, don’t panic. We are going to go through this code and look at each part.

1 const int k_numLEDs = 4;
First, we define how many elements are going to be in our array. We use this later to make sure that we don’t try to read (or write) past the end of our array.
(Arduino does not stop you from doing this which can cause all sorts of strange problems.)

2 const int kPinLeds[k_numLEDs] = {2,3,4,5}; // LEDs connected to pins 2-5
Second, we define the array. You’ll notice that we have the number of “elements”in the array in brackets. We could have used the actual number, but it is much better to use a constant. We assign the values to the array here. The values are inside of curly braces and are separated by commas.
Arrays are zero-indexed, which can be confusing. That means the first element in the array k_LEDPins is k_LEDPins[0]. The last element in the array is k_LEDPins[3]. (0-3 is 4 elements.)

4 void setup()
5 {
6 for(int i = 0; i < k_numLEDs; i++){
7 pinMode(kPinLeds[i], OUTPUT);
8 }
9 }

Here we use a for loop to go through each of the elements in our array and set them as OUTPUT. To access each element in the array,we use square brackets with the index inside.

13 for(int i = 0; i < k_numLEDs; i++){
14 digitalWrite(kPinLeds[i], HIGH);
15 delay(100);
16 }

This looks almost exactly the same as what is done in setup. Here we are going through each of the LEDs and turning them on (with a 100 millisecond delay in between them).

17 for(int i = k_numLEDs – 1; i >= 0; i–){
18 digitalWrite(kPinLeds[i], LOW);
19 delay(100);
20 }

Now we are showing that we can use a for loop to go backwards through the loop as well. We start at k_numLEDs – 1 since arrays are zero-indexed. If we started at k_PinLeds[4], that would be past the end of our array. We check >= 0 since we don’t want to miss the first element (the one at index 0.)

Exercises:
1. Make a program using arrays that lights up the LEDs from top to bottom and then goes backwards so only one LED is on at any time. (This is often called a “Cylon”5 or a “Larson”6 light.)
2. Make a program that lights up the LEDs in any pattern that you like.

Scroll to Top