Initial setup for FC-113 controller of TextLCD(1602A)

Dependencies:   TextLCD

This example is a simple use case for the user of Text LCD with the FC-113 controller, based on Mbed OS 5.

Note that PCF8574T has Mbed base addresses 0x40 ~ 0x4E, while PCF8574AT has base addresses 0x70 ~ 0x7E.

I used 0x4E for Text LCD with the FC-113 controller.

/media/uploads/Daniel_Lee/screen_shot_2019-12-24_at_2.37.38_pm.png /media/uploads/Daniel_Lee/textlcd.png

If you need to fine-tune the Text LCD or using another type the TextLCD, please see here.

Revision:
2:b60cb847489c
Parent:
0:005629fe3609
Child:
7:9fcc3c0acd50
--- a/main.cpp	Mon Feb 17 22:16:05 2014 +0000
+++ b/main.cpp	Fri Feb 21 09:36:12 2014 +0000
@@ -4,9 +4,9 @@
 
 int main() {
     while(1) {
-        myled = 1;
-        wait(0.2);
-        myled = 0;
-        wait(0.2);
+        myled = 1; // LED is ON
+        wait(0.2); // 200 ms
+        myled = 0; // LED is OFF
+        wait(1.0); // 1 sec
     }
 }