Desvription: draw a circle and wrtie characters on the screen

Dependencies:   C12832 mbed

Fork of app-board-LCD by Chris Styles

Revision:
4:1c76cb543f04
Parent:
3:2db94ee076ee
--- a/main.cpp	Wed Feb 05 15:32:38 2014 +0000
+++ b/main.cpp	Thu Oct 30 16:52:20 2014 +0000
@@ -1,7 +1,14 @@
+/****************************************
+*file :LCD demo
+*Creator :JacobShi
+*Time:2014/10/30
+*Desvription: draw a circle and
+* wrtie characters on the screen
+********************************** */
+
+
 #include "mbed.h"
 #include "C12832.h"
-
-
 C12832 lcd(p5, p7, p6, p8, p11);
 
 int main()
@@ -9,12 +16,11 @@
     int j=0;
     lcd.cls();
     lcd.locate(0,3);
-    lcd.printf("mbed application board!");
+    lcd.printf("This is the mbed LCD");
 
+    lcd.circle(30,20,10,1);
     while(true) {   // this is the third thread
-        lcd.locate(0,15);
-        lcd.printf("Counting : %d",j);
-        j++;
-        wait(1.0);
+        
+
     }
 }