You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in line 724 st7789 init param invert=True is default set; but other default set False and in line 127
if invert:
self.init_cmds.append({'cmd': 0x21}) only support invert=True ,so st7789 can not switch invert param change . so I suggest change the param invert=False as default, and line 127 add false code and line 754 {'cmd': 0x21, 'data': bytes([0x0])},` not need .
The text was updated successfully, but these errors were encountered:
https://github.com/lvgl/lv_binding_micropython/blob/master/driver/esp32/ili9XXX.py
`
class st7789(ili9XXX):
in line 724 st7789 init param invert=True is default set; but other default set False and in line 127
if invert:
self.init_cmds.append({'cmd': 0x21})
only support invert=True ,so st7789 can not switch invert param change . so I suggest change the param invert=False as default, and line 127 add false code and line 754
{'cmd': 0x21, 'data': bytes([0x0])},` not need .The text was updated successfully, but these errors were encountered: