Introduction to Arduino and Physical Computing

Creating a conversation between the physical world and the virtual world of the computer, with a process of transduction.
timothykc's picture

LED

 

Materials: LED, 220 ohm resistor

led.JPG
0
Your rating: None

Blinking LED

 

int ledPin = 13; // LED connected to digital pin 13
 
void setup()
{
pinMode(ledPin, OUTPUT); // sets the digital pin as output
}
 
void loop()
{
digitalWrite(ledPin, HIGH); // sets the LED on
delay(50); 
digitalWrite(ledPin, LOW); // sets the LED off
delay(50); 
}
Blinking LED_0.jpg
0
Your rating: None
victorpras's picture

Lab Report 1 - Blinking LED using Arduino

Description

Use the Arduino to control a light emitting diode, turning the light on for 2.5s every 0.5s

Components Used

·         Light Emitting Diode (LED)

·         Resistor

·         Arduino

ard2_1.jpg
0
Your rating: None
fanwaipio's picture

Lab01 - Blinking LED

 

02092011290.jpg
0
Your rating: None

Lab1 - Blazing LED

 

Arduino - Blazing LED
5
Your rating: None Average: 5 (1 vote)
ldevendorf's picture

Blinking LED

Description

Blinking LED

0
Your rating: None

Lab Project - Blinking LED

The first project was to create a working LED blink program loaded onto the Arduino board. Using materials and directions provided, completed this assignment with the standard code, below:

 

Blink_LED.JPG
0
Your rating: None

Lab 1: Blinking LED

Description

Used the Arduino to turn an LED on and off at a specified rate. 

Components Used

Arduino Uno

220 kohm resistor

Blue LED

Arduino Code (modified from Blink example)

 /*

LED circuit and arduino
0
Your rating: None

Lab 01 - Blinking Led

Description

0
Your rating: None

LED Strobe Light

DESCRIPTION

Using the Arduino to control a LED and making it flicker like a strobe light. 

COMPONENTS

Red LED

220 ohm resistor

ARDUINO CODE

 

IMG_4789_0.JPG
0
Your rating: None
Syndicate content