/*

This sketch is the starting point for Lab 10

of Phys3330, Sp 2014

*/

 

// This is the output pin which is connected to an LED:

int led = 13;

 

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

void setup() {

pinMode(led,OUTPUT);

}

 

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

void loop() {

digitalWrite(led,HIGH);

}