1
+ /* Melody
2
+ * (cleft) 2005 D. Cuartielles for K3
3
+ *
4
+ * This example uses a piezo speaker to play melodies. It sends
5
+ * a square wave of the appropriate frequency to the piezo, generating
6
+ * the corresponding tone.
7
+ *
8
+ * The calculation of the tones is made following the mathematical
9
+ * operation:
10
+ *
11
+ * timeHigh = period / 2 = 1 / (2 * toneFrequency)
12
+ *
13
+ * where the different tones are described as in the table:
14
+ *
15
+ * note frequency period timeHigh
16
+ * c 261 Hz 3830 1915
17
+ * d 294 Hz 3400 1700
18
+ * e 329 Hz 3038 1519
19
+ * f 349 Hz 2864 1432
20
+ * g 392 Hz 2550 1275
21
+ * a 440 Hz 2272 1136
22
+ * b 493 Hz 2028 1014
23
+ * C 523 Hz 1912 956
24
+ *
25
+ * http://www.arduino.cc/en/Tutorial/Melody
26
+ */
27
+
28
+ int speakerPin = 9 ;
29
+
30
+ int length = 15 ; // the number of notes
31
+ char notes[] = " ccggaagffeeddc " ; // a space represents a rest
32
+ int beats[] = { 1 , 1 , 1 , 1 , 1 , 1 , 2 , 1 , 1 , 1 , 1 , 1 , 1 , 2 , 4 };
33
+ int tempo = 300 ;
34
+
35
+ void playTone (int tone, int duration) {
36
+ for (long i = 0 ; i < duration * 1000L ; i += tone * 2 ) {
37
+ digitalWrite (speakerPin, HIGH);
38
+ delayMicroseconds (tone);
39
+ digitalWrite (speakerPin, LOW);
40
+ delayMicroseconds (tone);
41
+ }
42
+ }
43
+
44
+ void playNote (char note, int duration) {
45
+ char names[] = { ' c' , ' d' , ' e' , ' f' , ' g' , ' a' , ' b' , ' C' };
46
+ int tones[] = { 1915 , 1700 , 1519 , 1432 , 1275 , 1136 , 1014 , 956 };
47
+
48
+ // play the tone corresponding to the note name
49
+ for (int i = 0 ; i < 8 ; i++) {
50
+ if (names[i] == note) {
51
+ playTone (tones[i], duration);
52
+ }
53
+ }
54
+ }
55
+
56
+ void setup ()
57
+ {
58
+ pinMode (speakerPin, OUTPUT);
59
+ }
60
+
61
+ void loop ()
62
+ {
63
+ for (int i = 0 ; i < length; i++)
64
+ {
65
+ if (notes[i] == ' ' )
66
+ {
67
+ delay (beats[i] * tempo); // rest
68
+ }
69
+ else
70
+ {
71
+ playNote (notes[i], beats[i] * tempo);
72
+ }
73
+
74
+ // pause between notes
75
+ delay (tempo / 2 );
76
+ }
77
+ }
0 commit comments