Skip to content

Instantly share code, notes, and snippets.

@pvanallen
Last active September 8, 2016 01:22
Show Gist options
  • Save pvanallen/785ca3a409f4a7d05fcf6cf628f35018 to your computer and use it in GitHub Desktop.
Save pvanallen/785ca3a409f4a7d05fcf6cf628f35018 to your computer and use it in GitHub Desktop.
Creative Tech Course: Arduino Function Example 2
/*
Arduino Function Example 2 - BlinkLed2
Blinks an LED - part of a series to experiment with functions
Creative Technology Course by Philip van Allen - ArtCenter College of Design
*/
// the setup function runs once when you press reset or power the board
void setup() {
// initialize digital pin 13 as an output.
pinMode(13, OUTPUT);
}
// the loop function runs over and over again forever
void loop() {
blinkLed(200);
}
void blinkLed(int delayTime) {
digitalWrite(13, HIGH); // turn the LED on (HIGH is the voltage level)
delay(delayTime); // wait for a second
digitalWrite(13, LOW); // turn the LED off by making the voltage LOW
delay(delayTime); // wait for a second
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment