chage a lib name

Dependencies:   C12832_lcd mbed

Fork of app-board-LCD by Chris Styles

Files at this revision

API Documentation at this revision

Comitter:
khayakawa
Date:
Mon Sep 30 00:50:46 2013 +0000
Parent:
2:a87e255a8f3a
Commit message:
chage a lib name

Changed in this revision

C12832_lcd.lib Show diff for this revision Revisions of this file
C12832_lcd_t.lib Show annotated file Show diff for this revision Revisions of this file
main.cpp Show annotated file Show diff for this revision Revisions of this file
diff -r a87e255a8f3a -r 37aea06abce5 C12832_lcd.lib
--- a/C12832_lcd.lib	Fri Oct 26 10:49:28 2012 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +0,0 @@
-http://mbed.org/users/dreschpe/code/C12832_lcd/#468cdccff7af
diff -r a87e255a8f3a -r 37aea06abce5 C12832_lcd_t.lib
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/C12832_lcd_t.lib	Mon Sep 30 00:50:46 2013 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/dreschpe/code/C12832_lcd/#468cdccff7af
diff -r a87e255a8f3a -r 37aea06abce5 main.cpp
--- a/main.cpp	Fri Oct 26 10:49:28 2012 +0000
+++ b/main.cpp	Mon Sep 30 00:50:46 2013 +0000
@@ -6,13 +6,17 @@
 int main()
 {
     int j=0;
+    float a;
+    
+    a= rand();
     lcd.cls();
     lcd.locate(0,3);
     lcd.printf("mbed application board!");
 
     while(true) {   // this is the third thread
+        a= rand()/1000000;
         lcd.locate(0,15);
-        lcd.printf("Counting : %d",j);
+        lcd.printf("Counting : %d %.2f\n",j,a);
         j++;
         wait(1.0);
     }