-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSoundManager.h
More file actions
51 lines (41 loc) · 1006 Bytes
/
Copy pathSoundManager.h
File metadata and controls
51 lines (41 loc) · 1006 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
#ifndef SOUND_MANAGER_H
#define SOUND_MANAGER_H
#include <Arduino.h>
// Frequencies in Hz
#define REST 0
#define NOTE_E3 165
#define NOTE_G3 196
#define NOTE_A3 220
#define NOTE_AS3 233
#define NOTE_B3 247
#define NOTE_C4 261
#define NOTE_D4 294
#define NOTE_DS4 311
#define NOTE_F4 349
#define NOTE_G4 392
#define NOTE_C5 523
#define NOTE_D5 587
struct Note {
int frequency;
int duration;
};
class SoundManager {
private:
int pin;
unsigned long lastUpdate;
// Melody State
const Note* currentMelody; // Pointer to the song array
int melodyLength; // How many notes in the song
int noteIndex; // Which note is played
bool isPlaying; // Is the melody on
public:
SoundManager(int pinNumber);
void init();
void update();
void playMelody(const Note* melody, int length);
void playDoom();
void playHelldivers();
void playStop();
bool isBusy() { return isPlaying; }
};
#endif