mbed library for earthlcd ezLCD3xx line of displays

Dependencies:   MMA8451Q SDFileSystem TSI ezLCDLib mbed

go here for library http://mbed.org/users/codeman/code/ezLCDLib/

Revision:
0:b4366af9dee8
Child:
1:d8871919d781
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Sun Apr 21 22:21:50 2013 +0000
@@ -0,0 +1,27 @@
+#include "mbed.h"
+#include "ezLCDLib.h"
+ 
+ezLCD3 lcd(PTC4, PTC3);
+  int main() {
+    while (1) {
+       lcd.cls();
+//       wait(2);
+//       lcd.light(50);
+//       wait(2);
+       lcd.printf("%d %s %02x", 1024, "test", 54);
+       wait(1);
+//       lcd.light(100);              
+/*
+       lcd.pixel(14, 35, true);
+       lcd.pixel(16, 36, true);
+       lcd.pixel(18, 37, true);
+       lcd.pos(5, 30);
+       lcd.printf("Hi");
+       lcd.circle(50, 20, 20, true);
+       lcd.pos(50, 20);
+       lcd.printf("Howdy");
+       lcd.line(0, 0, 25, 25, true);
+*/
+       wait(2);
+    }
+  }
\ No newline at end of file