I am trying to migrate a working Arduino Sketch to an ESP8266-03. Within the sketch I use a I2C 4x20 LCD witch works very well in on my existing Arduino Nano. The Constructor is the following:
// Set the pins on the I2C chip used for LCD connections:
// addr, en,rw,rs,d4,d5,d6,d7,bl,blpol
LiquidCrystal_I2C lcd(0x20, 4, 5, 6, 0, 1, 2, 3, 7, NEGATIVE); // Set the LCD I2C address
With the Library LiquidCristal_I2C on the ESP8266 Platform in the Arduino IDE the Display don’t work. It is not possible to declare the pin association. The only accepted definition is:
LiquidCrystal_I2C lcd(0x0A,20,4);
Is there another library available for the ESP8266 Arduino IDE.
Thanks for your support
remo