You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
286 B
Arduino
17 lines
286 B
Arduino
5 years ago
|
#include "Tone.h"
|
||
|
|
||
|
int Note;
|
||
|
int tones [] = {NOTE_G4, NOTE_CS5, NOTE_F6};
|
||
|
// Hertz values for every note in the scale
|
||
|
void setup() {
|
||
|
Serial.begin(9600);}
|
||
|
|
||
|
void loop() {
|
||
|
for (int Note = 0; Note<100; Note++) {
|
||
|
tone(11, tones[Note]);
|
||
|
delay(50);
|
||
|
}
|
||
|
Serial.println (Note);
|
||
|
|
||
|
}
|