Colin Bookman / Mbed 2 deprecated MicIO-Example

Dependencies:   MicIO TextLCD mbed

Fork of TextLCD_HelloWorld by Simon Ford

Files at this revision

API Documentation at this revision

Comitter:
cbookman3
Date:
Sun Mar 23 20:45:13 2014 +0000
Parent:
2:ad0b044d0a10
Child:
4:e788d37f0cbe
Commit message:
example program;

Changed in this revision

MicIO.lib Show annotated file Show diff for this revision Revisions of this file
main.cpp Show annotated file Show diff for this revision Revisions of this file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/MicIO.lib	Sun Mar 23 20:45:13 2014 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/cbookman3/code/MicIO/#c90f916f0b08
--- 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);
 }
+