Skip to content

Instantly share code, notes, and snippets.

@arielchuri
Created September 6, 2013 20:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save arielchuri/6469189 to your computer and use it in GitHub Desktop.
Save arielchuri/6469189 to your computer and use it in GitHub Desktop.
Emerging Objects Class Code
int led = 13;
int led2 = 11;
int blinks;
int fade;
// 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(1); // wait for a second
//digitalWrite(led, LOW); // turn the LED off by making the voltage LOW
delay(25); // wait for a second
analogWrite(led2, fade);
fade++;
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