Driver for a Text LCD using a PCF8574 over I2C

Dependencies:   mbed

main.cpp

Committer:
romilly
Date:
2010-08-09
Revision:
0:6beb6f498640

File content as of revision 0:6beb6f498640:

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

TextLCD lcd(p9, p10);

int main() {
    lcd.printf("Hi mbed World!\n");
}