Skip to content

Instantly share code, notes, and snippets.

@dwblair
Created February 27, 2014 22:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dwblair/9261429 to your computer and use it in GitHub Desktop.
Save dwblair/9261429 to your computer and use it in GitHub Desktop.
/*
Blink
Turns on an LED on for one second, then off for one second, repeatedly.
This example code is in the public domain.
*/
// Pin 13 has an LED connected on most Arduino boards.
// give it a name:
int led = 8;
int delayLevel=100;
// the setup routine runs once when you press reset:
void setup() {
// initialize the digital pin as an output.
pinMode(led, OUTPUT);
DDRB |= (1<<1);
DDRB |= (1<<3);
}
// the loop routine runs over and over again forever:
void loop() {
//digitalWrite(led, HIGH); // turn the LED on (HIGH is the voltage level)
PORTB |= (1<<3);
delay(delayLevel); // wait for a second
PORTB &= ~(1<<3);
//tone(9,300,500);
//digitalWrite(led, LOW); // turn the LED off by making the voltage LOW
delay(delayLevel); // wait for a second
PORTB |= (1<<1);
for (int i=0; i< 10; i++) {
//PORTB |= (1<<1);
delay(delayLevel); // wait for a second
//PORTB &= ~(1<<1);
//tone(9,300,500);
tone(9,200,100);
//digitalWrite(led, LOW); // turn the LED off by making the voltage LOW
delay(delayLevel); // wait for a second
}
PORTB &= ~(1<<1);
digitalWrite(led, HIGH); // turn the LED on (HIGH is the voltage level)
for (int i=0; i< 10; i++) {
//digitalWrite(led, HIGH); // turn the LED on (HIGH is the voltage level)
//PORTB |= (1<<3);
delay(delayLevel); // wait for a second
//PORTB &= ~(1<<3);
tone(9,300,100);
//digitalWrite(led, LOW); // turn the LED off by making the voltage LOW
delay(delayLevel); // wait for a second
}
digitalWrite(led, LOW); // turn the LED off by making the voltage LOW
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment