![](/media/cache/group/x_scaled_mbed_robot_racing_logo.png.pagespeed.ic.QJqmdfgPSb.png.50x50_q85.png)
Driver for a Text LCD using a PCF8574 over I2C
Dependencies: mbed
Fork of I2CTextLCD by
Diff: main.cpp
- 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"); }