#include "Pitches.h"
#include <Song.cpp>
void setup() {
// put your setup code here, to run once:
pinMode(SPEAKER_PIN, OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
tone(SPEAKER_PIN, NOTE_C4);
delay(800);
tone(SPEAKER_PIN, NOTE_D4);
delay(300);
tone(SPEAKER_PIN, NOTE_E4);
delay(500);
tone(SPEAKER_PIN, NOTE_F4);
delay(500);
tone(SPEAKER_PIN, NOTE_G4);
delay(800);
tone(SPEAKER_PIN, NOTE_E4);
delay(300);
tone(SPEAKER_PIN, NOTE_C4);
delay(800);
noTone(SPEAKER_PIN);
delay(1000);
}