Demo of using the LCD of the application board

Dependencies:   C12832 mbed

Fork of app-board-LCD by Chris Styles

Revision:
4:69913788ef01
Parent:
3:2db94ee076ee
--- a/main.cpp	Wed Feb 05 15:32:38 2014 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,20 +0,0 @@
-#include "mbed.h"
-#include "C12832.h"
-
-
-C12832 lcd(p5, p7, p6, p8, p11);
-
-int main()
-{
-    int j=0;
-    lcd.cls();
-    lcd.locate(0,3);
-    lcd.printf("mbed application board!");
-
-    while(true) {   // this is the third thread
-        lcd.locate(0,15);
-        lcd.printf("Counting : %d",j);
-        j++;
-        wait(1.0);
-    }
-}