printing text onto the screen

Dependencies:   mbed

Revision:
0:972f5da423fd
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Fri Aug 20 12:45:19 2010 +0000
@@ -0,0 +1,16 @@
+#include "mbed.h"
+#include "MAX7456.h"
+
+MAX7456 vo (p5,p6,p7,p8,p9);
+
+DigitalOut myled(LED1);
+
+int main() {
+
+vo.format("P");
+vo.cls();
+vo.locate(1,1);
+vo.printf("Hello world!");
+vo.getc('h');
+
+}