Skip to content

Instantly share code, notes, and snippets.

@MLpranav
Created June 16, 2020 11:05
Show Gist options
  • Save MLpranav/8f98319124405e5d54d1c524c1916e53 to your computer and use it in GitHub Desktop.
Save MLpranav/8f98319124405e5d54d1c524c1916e53 to your computer and use it in GitHub Desktop.
Astronomia 4
void loop() {
if (digitalRead(button)==LOW){ //if button is pressed
for (int thisNote = 0; thisNote < looptune; thisNote++) {
int noteDuration = 750/4;
tone(buzzer, melody[thisNote%72], noteDuration);
int pauseBetweenNotes = noteDuration * 1.30;
delay(pauseBetweenNotes);
noTone(buzzer);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment