/*

This sketch is the starting point for Lab 10

of Phys3330, Fa 2014

*/

 

 

// The setup routine runs once when you press reset.

void setup() {

// This is in all arduino programs as a "this stuff will be used" section

pinMode(led,OUTPUT);

// This will …

}

 

// the setup routine runs once when you press reset:

void setup() {

// This is in all arduino programs as a "this stuff will be used" section

pinMode(led,OUTPUT);

// This will …

}

 

// the loop routine runs over and over again forever:

void loop() {

// This is the heart of the program and contains what you're asking it to do

digitalWrite(led,HIGH);

// This will . . .

}