Driver for a Text LCD using a PCF8574 over I2C

Dependencies:   mbed

Fork of I2CTextLCD by Romilly Cocking

Revision:
1:eac18254e072
Parent:
0:6beb6f498640
Child:
2:628a00fec43c
--- a/main.cpp	Mon Aug 09 14:17:02 2010 +0000
+++ b/main.cpp	Thu Jan 14 09:48:50 2016 +0000
@@ -1,8 +1,10 @@
 #include "mbed.h"
 #include "TextLCD.h"
 
-TextLCD lcd(p9, p10);
+TextLCD lcd(I2C_SDA,I2C_SCL);
 
 int main() {
     lcd.printf("Hi mbed World!\n");
+    lcd.locate(4,3);
+     lcd.printf("Hiffbdd!\n");
 }