Created
September 6, 2013 20:01
-
-
Save arielchuri/6469163 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| int led = 13; | |
| int led2 = 11; | |
| int blinks; | |
| // the setup routine runs once when you press reset: | |
| void setup() { | |
| // initialize the digital pin as an output. | |
| pinMode(led, OUTPUT); | |
| pinMode(led2, OUTPUT); | |
| Serial.begin(9600); | |
| } | |
| // the loop routine runs over and over again forever: | |
| void loop() { | |
| digitalWrite(led, HIGH); // turn the LED on (HIGH is the voltage level) | |
| delay(400); // wait for a second | |
| digitalWrite(led, LOW); // turn the LED off by making the voltage LOW | |
| delay(100); // wait for a second | |
| digitalWrite(led, HIGH); // turn the LED on (HIGH is the voltage level) | |
| delay(150); // wait for a second | |
| digitalWrite(led, LOW); // turn the LED off by making the voltage LOW | |
| delay(100); // wait for a second | |
| digitalWrite(led, HIGH); // turn the LED on (HIGH is the voltage level) | |
| delay(100); // wait for a second | |
| digitalWrite(led, LOW); // turn the LED off by making the voltage LOW | |
| delay(100); // wait for a second | |
| digitalWrite(led, HIGH); // turn the LED on (HIGH is the voltage level) | |
| delay(200); // wait for a second | |
| digitalWrite(led, LOW); // turn the LED off by making the voltage LOW | |
| delay(100); // wait for a second | |
| digitalWrite(led, HIGH); // turn the LED on (HIGH is the voltage level) | |
| delay(200); // wait for a second | |
| digitalWrite(led, LOW); // turn the LED off by making the voltage LOW | |
| delay(300); // wait for a second | |
| digitalWrite(led2, HIGH); // turn the LED on (HIGH is the voltage level) | |
| delay(400); // wait for a second | |
| digitalWrite(led2, LOW); // turn the LED off by making the voltage LOW | |
| delay(200); // wait for a second | |
| digitalWrite(led2, HIGH); // turn the LED on (HIGH is the voltage level) | |
| delay(400); // wait for a second | |
| digitalWrite(led2, LOW); // turn the LED off by making the voltage LOW | |
| delay(1000); // wait for a second | |
| blinks = blinks + 1; | |
| // Serial.print("Blink # "); | |
| Serial.println("Can you sign along with the blinks?"); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment