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!


Revision of Assignment 1. Blinking LED from Wed, 09/05/2007 - 00:58

Project Members: 
Seung Wook Kim
- Setting Up Arduino SW & HW - Turning On and OFF an LED at 0.5 Hz *** Source Code ***  int ledPin = 13;                // LED connected to digital pin 13void setup()                    // run once, when the sketch starts{   pinMode(ledPin, OUTPUT);      // sets the digital pin as output}void loop()                     // run over and over again{  digitalWrite(ledPin, HIGH);   // sets the LED on  delay(1000);                  // waits for a second  digitalWrite(ledPin, LOW);    // sets the LED off  delay(1000);                  // waits for a second} 

swkim_assign_01


Powered by Drupal - Design by Artinet