Josh Davy / Mbed OS Flip_OS_5

Dependencies:   el17jd

Revision:
4:afbf3dd71403
Child:
5:b9cf407bcc63
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Music/Music.h	Sat Apr 06 11:47:18 2019 +0000
@@ -0,0 +1,29 @@
+#ifndef MUSIC_H
+#define MUSIC_H
+
+/*Music Class*/
+#include "mbed.h"
+#include "N5110.h"
+#include "Gamepad.h"
+#include "Sprite.h"
+#include "Player.h"
+#include "SoundData.h"
+
+
+
+class Music {
+
+public:
+    Music();
+    ~Music();
+    void init(int * data);
+    void play_next();
+
+    
+private:
+    int * _data;
+    int _index;
+    PwmOut speaker(PTC10);
+
+};
+#endif
\ No newline at end of file