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 Lab 4 from Fri, 10/05/2007 - 12:28

Project Members: 
Kenghao Chang

int potPin = 0;   // select the input pin for the potentiometerint ledPin = 10;   // select the pin for the LEDint val = 0;      // variable to store the value coming from the sensorvoid setup() {  Serial.begin(9600);}void loop() {  val = analogRead(potPin);    // read the value from the sensor, between 0 - 1024   Serial.println(val/4, DEC);  analogWrite(ledPin, val/4); // analogWrite can be between 0-255}


Powered by Drupal - Design by Artinet