A DTMF sequence editor and player for HAM radio equipment command & control.

Dependencies:   mbed ExtTextLCD

Revision:
0:1324e7d9d471
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/dtmf_generator.hpp	Mon Mar 07 22:51:19 2011 +0000
@@ -0,0 +1,14 @@
+#ifndef _DTMF_GENERATOR_HPP
+#define _DTMF_GENERATOR_HPP
+
+#include <string>
+
+class DtmfGenerator {
+public:
+    virtual void play(char ch) = 0;
+    virtual void stop() = 0;
+    
+    virtual ~DtmfGenerator() {}
+};
+
+#endif
\ No newline at end of file