This program allows to transform analog signal from rotary dial phone to numeric keys.

Dependencies:   mbed

Revision:
0:2c8568cec97f
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/USBKeyboard/USBKeyboard.cpp	Sun Aug 07 09:10:18 2011 +0000
@@ -0,0 +1,13 @@
+#include "USBKeyboard.h"
+
+USBKeyboard::USBKeyboard() {
+//    _buttons = 0;
+}
+
+void USBKeyboard::sendKeys(char *szString) {
+    keyboard(szString);
+}
+
+void USBKeyboard::sendKey(char c) {
+    keyboard(c);
+}