Assignment: Introduction to Arduino and Physical Computing
Collaborators:
Assignment: Introduction to Arduino and Physical Computing Collaborators:
Author:
Erin Knight
Name
Making the LED Blink!!
Description
I used the Arduino board to make my LED blink! I changed the delay speeds to 100 so it was more disco light-esque. :) Note - I also used the orange wire as one of the ground wires since I didn't have another black wire.
Components Used
The Code:
int ledPin = 13;
void setup() {
pinMode(ledPin, OUTPUT);
}
void loop(){
digitalWrite(ledPin, HIGH);
delay(100);
digitalWrite(ledPin, LOW);
delay(100);
}