I am attempting to use the subject lcd and the Adafruit I2c/spi lcd backpack with STEMMA QT connectors. I have attached an ESP32 with a STEMMA QT breakout board to the appropriate SDA/SCL, 3.3v, gnd pins. compiled a yaml program with the following for the LCD:display:
- platform: lcd_pcf8574
dimensions: 20x4
address: 0x20
id: my_display
lambda: |-
id(my_display).backlight();
it.print(“Hello World!”);
The I2C scan finds the interface board at 0x20.
Problem is nothing shows on the screen, backlight doesn’t come on either. Adjusted contrast with no improvement. Traded out a identical screen setup with same results.
Does this set up provide enough power to the lcd? Can you some how safely run 5v to board separately for lcd, without burning up the I2C bus?
Is this the correct platform interface for this setup?
Any other ideas greatly welcomed!