Where I try playing a sample via PwmOutput

Dependencies:   LCD_ST7735 mbed

Reading some old ZX Spectrum forums, I wanted to check wether playing a sample was possible. So far, no, but there's more things to try.

Revision:
0:167d81d4f79f
diff -r 000000000000 -r 167d81d4f79f Sequencer.h
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Sequencer.h	Sun Mar 08 21:51:59 2015 +0000
@@ -0,0 +1,27 @@
+#include "mbed.h"
+#include "Color565.h"
+#include "font_IBM.h"
+#include "LCD_ST7735.h"
+#include "sound.h"
+#pragma once
+
+class Sequencer {
+    DigitalIn left;
+    DigitalIn right;
+    DigitalIn down;
+    DigitalIn up;
+    DigitalIn square;
+    DigitalIn circle; 
+    DigitalOut led1;
+    DigitalOut led2;
+    PwmOut pwm;
+    AnalogIn ain;
+    I2C i2c;
+    LCD_ST7735 disp;
+    //Row rows[3];
+    int sc;
+    public:
+        Sequencer();
+        void drawGrid();
+        void pns();
+};