Driver for a Text LCD using a PCF8574 over I2C

Dependencies:   mbed

Committer:
romilly
Date:
Mon Aug 09 14:17:02 2010 +0000
Revision:
0:6beb6f498640

        

Who changed what in which revision?

UserRevisionLine numberNew contents of line
romilly 0:6beb6f498640 1 #include "mbed.h"
romilly 0:6beb6f498640 2 #include "TextLCD.h"
romilly 0:6beb6f498640 3
romilly 0:6beb6f498640 4 TextLCD lcd(p9, p10);
romilly 0:6beb6f498640 5
romilly 0:6beb6f498640 6 int main() {
romilly 0:6beb6f498640 7 lcd.printf("Hi mbed World!\n");
romilly 0:6beb6f498640 8 }