forked from ChamplainBrent/ArduinoExample
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMusicWithArduino
More file actions
60 lines (52 loc) · 884 Bytes
/
Copy pathMusicWithArduino
File metadata and controls
60 lines (52 loc) · 884 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/*
Esplora Music
Press SWITCH 1 and slide the slider at the same time
Created on 22 november 2012
By Enrico Gueli, [email protected]
modified 22 Dec 2012
by Tom Igoe
*/
#include <Esplora.h>
// these are the frequencies for the notes from middle C
// to one octave above middle C:
const int note[] = {
00,
100,
00,
200,
00,
300,
00,
400,
00,
500,
00,
600,
00,B
700,
00
800,
00,
900,
00,
};
void setup()
{
}
void loop()
{
// read the button labeled SWITCH_DOWN. If it's low,
// then play a note:
if (Esplora.readButton(SWITCH_DOWN) == LOW) {
int slider = Esplora.readSlider();
// use map() to map the slider's range to the
// range of notes you have:
byte thisNote = map(slider, 0, 1023, 0, 13);
// play the note corresponding to the slider's position:
Esplora.tone(note[thisNote]);
}
else {
// if the button isn't pressed, turn the note off:
Esplora.noTone();
}
}