Pancake Library for mbed

Revision:
0:ee3420f81e2b
Child:
1:2eaa0fea479c
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pancake.hpp	Sun Nov 22 14:50:54 2015 +0000
@@ -0,0 +1,12 @@
+#include "mbed.h"
+
+class Pancake {
+    public:
+    Pancake(PinName tx,PinName rx);
+    //~Pancake();
+    void sound1(uint8_t cn,uint8_t on ,uint8_t sn);
+
+    private:
+    void _sendCommand(uint8_t data[],uint8_t length);
+    Serial _pc;
+};
\ No newline at end of file