Driver for a Text LCD using a PCF8574 over I2C

Dependencies:   mbed

Fork of I2CTextLCD by Romilly Cocking

main.cpp

Committer:
syafiq8530
Date:
2016-01-14
Revision:
1:eac18254e072
Parent:
0:6beb6f498640
Child:
2:628a00fec43c

File content as of revision 1:eac18254e072:

#include "mbed.h"
#include "TextLCD.h"

TextLCD lcd(I2C_SDA,I2C_SCL);

int main() {
    lcd.printf("Hi mbed World!\n");
    lcd.locate(4,3);
     lcd.printf("Hiffbdd!\n");
}