/*
Josh Fender
This is an example code for making the LED blink on an arduino mega, and to show how
to submit your code on schoology.
*/
void setup() {
pinMode(8, OUTPUT); // sets the led pin 8 as an output
}
void loop() { // turns the led on for .5 seconds then off for .5 seconds repeatidly
digitalWrite(8, HIGH);
delay(500);
digitalWrite(8, LOW);
delay(500);
}