Driver for a Text LCD using a PCF8574 over I2C

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main.cpp Source File

main.cpp

00001 #include "mbed.h"
00002 #include "TextLCD.h"
00003 
00004 TextLCD lcd(p9, p10);
00005 
00006 int main() {
00007     lcd.printf("Hi mbed World!\n");
00008 }