Hello,
sorry for my english. I use Google translation.
To my problem:
Arduino UNO R3 and LCD H44780 still works well.
Now I want to use a PCF8574P. It is no text, just a black screen.
I use this circuit.
http://www.abload.de/img/schematic_diagramk8pgf.jpg]
DISPLAYTECH 162C BCBC Datasheet
Code from http://hmario.home.xs4all.nl/arduino/LiquidCrystal_I2C/
#include <Wire.h>
#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x20,16,2); // set the LCD address to 0x20 for a 16 chars and 2 line display
void setup()
{
lcd.init(); // initialize the lcd
// Print a message to the LCD.
lcd.backlight();
lcd.setCursor(0,0);
lcd.print("ARDUINO+PCF8574P");
lcd.setCursor(0,1);
lcd.print("+HD44780=I2C-LCD");
}
void loop()
{
}