AN example micIO application.

Dependencies:   MicIO TextLCD mbed

Fork of TextLCD_HelloWorld by Simon Ford

Revision:
3:7cecc3a5e4fa
Parent:
2:ad0b044d0a10
--- a/main.cpp	Sat Dec 04 11:31:07 2010 +0000
+++ b/main.cpp	Sun Mar 23 20:45:13 2014 +0000
@@ -2,9 +2,13 @@
 
 #include "mbed.h"
 #include "TextLCD.h"
+#include "MicIO.h"
 
-TextLCD lcd(p15, p16, p17, p18, p19, p20); // rs, e, d4-d7
+MicIO micIO(p18,p17);
 
 int main() {
-    lcd.printf("Hello World!\n");
+    wait(1);
+    //41:42:43:44:45:46:47:48:49:4a:4b:4c:4d:4e:4f:50:51:52:53:54:55:56:57:58:59:5a:61:62:63:64:65:66:67:68:69:6a:6b:6c:6d:6e:6f:70:71:72:73:74:75:76:77:78:79:7a:31:32:33:34:35:36:37:38:39:30
+    micIO.send("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890", 62);
 }
+