Dependencies:   mbed mbed-rtos C12832_lcd

Files at this revision

API Documentation at this revision

Comitter:
nukkrith
Date:
Sun Jun 27 06:28:07 2021 +0000
Commit message:
This program uses mbed version 2015

Changed in this revision

C12832_lcd.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
mbed-rtos.lib Show annotated file Show diff for this revision Revisions of this file
mbed.bld Show annotated file Show diff for this revision Revisions of this file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/C12832_lcd.lib	Sun Jun 27 06:28:07 2021 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/dreschpe/code/C12832_lcd/#8f86576007d6
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Sun Jun 27 06:28:07 2021 +0000
@@ -0,0 +1,21 @@
+#include "mbed.h"
+#include "rtos.h"
+#include "C12832_lcd.h"
+
+C12832_LCD lcd;
+int Number = 0;
+
+void lcd_thread(void const *args){
+    while(1){
+    lcd.cls();
+    lcd.locate(0,0);
+    lcd.printf("LCD Display test\n");
+    lcd.printf("Running number is: %d \n",Number++);
+    Thread::wait(1000);    
+    }
+}
+
+int main() {
+    Thread LCD_ID(lcd_thread);
+    while(1){;}
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed-rtos.lib	Sun Jun 27 06:28:07 2021 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/mbed_official/code/mbed-rtos/#3da5f554d8bf
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed.bld	Sun Jun 27 06:28:07 2021 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/mbed_official/code/mbed/builds/25aea2a3f4e3
\ No newline at end of file