Colin Bookman / Mbed 2 deprecated MicIO-Example

Dependencies:   MicIO TextLCD mbed

Fork of TextLCD_HelloWorld by Simon Ford

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main.cpp Source File

main.cpp

00001 // Hello World! for the TextLCD
00002 
00003 #include "mbed.h"
00004 #include "TextLCD.h"
00005 #include "MicIO.h"
00006 
00007 MicIO micIO(p18,p17);
00008 
00009 int main() {
00010     wait(1);
00011     //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
00012     micIO.send("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890", 62);
00013 }
00014