devbis / st7789py_mpy

Slow micropython driver for 240x240 ST7789 display without CS pin from Ali Express, written in MicroPython
MIT License
82 stars 33 forks source link

Backlight to set #5

Open dnguyen76 opened 3 years ago

dnguyen76 commented 3 years ago

Hello Ivan I am using an ESP 32 TTGO T Display board and the screen stay black I have to add before calling display.init() these 2 instructions:

backlight= machine.Pin(4) backlight.value(1)

to get the display visible I have looked inside your driver and i don't see any backlight set

Kindly Dan