Announcements

November 24, 2007
Reading for November 27th, are now posted. Enjoy!

October 2, 2007
To upload your thoughtless acts, create a new assignment page like any other lab. You'll see "Thoughtless Acts" listed as one of the assignment options.

May 24, 2008
This site has been archived and is no longer editable. Stay tuned for the next version, coming in the fall!


Assignment 1. Blinking LED

Project Members: 
Seung Wook Kim

 

Description 

- Setting Up Arduino HW & SW

- Turning On and Off an LED at 0.5Hz

 

Components

- LED (light: red)

- Resistor (stripes: red-red-brown-gold)

 

Arduino Code

int ledPin = 13;

void setup()

{

  pinMode(ledPin, OUTPUT);

}

 void loop()

{

  digitalWrite(ledPin, HIGH);

  delay(1000);

  digitalWrite(ledPin, LOW);

  delay(1000);

}

 

swkim_assign_01swkim_assign_01 


Comments

feedback

Looks good! reports missing a components section though. please refer to my example report for guidance in the future.

dave


Thanks, dave!

I just added the component section.


Powered by Drupal - Design by Artinet