Introduction to Arduino and Physical Computing


Description
Use the Arduino to control a light emitting diode and make it blink in different rate.
Components Used
- Light Emitting Diode (LED)
- Resistor
Arduino Code
/*
Blink
Turns on an LED on for one second, then off for one second, repeatedly.
This example code is in the public domain.
*/

Description

Description
Use the Arduino to control a light emitting diode and make it blink in different rate.
Components Used
- Light Emitting Diode (LED)
- Resistor
Arduino Code
/* Blinking LED
* ------------
*
* turns on and off a light emitting diode(LED) connected to a digital
* pin, in intervals of 2 seconds. Ideally we use pin 13 on the Arduino
* board because it has a resistor attached to it, needing only an LED

I changed the time from one second to half a second.

Components used: resistor, LED, Arduino board
Discription: the following code is to blink LED, ON for 1 sec and OFF for 1 sec, and repeat it.
