lcd_16x2

Dependencies:   mbed SeeedShieldBot TextLCD BluetoothSerial

Revision:
0:8dc2120fec08
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Tue Apr 26 06:58:47 2022 +0000
@@ -0,0 +1,16 @@
+#include "mbed.h"
+#include "TextLCD.h"
+DigitalOut myled(LED1);
+TextLCD ark(PA_8,PA_1,PA_4,PB_0,PC_1,PC_0);
+int main()
+{
+    ark.cls();
+    
+    while(1) {
+        ark.locate(5,0);
+        ark.printf("HEllo");
+          ark.locate(5,1);
+        ark.printf("world");
+        
+    }
+}