SimUKdev

Results 3 comments of SimUKdev

Interesting... I appear to have made some progress with this: ![st7789_240x320_lumalcd_fullscreen_02may2021](https://user-images.githubusercontent.com/52102399/116812850-c9688f80-ab48-11eb-9db0-1203cf8c5f3c.JPG) I changed two lines of code in https://github.com/rm-hull/luma.lcd/blob/master/luma/lcd/device.py#L301-L303 ``` def __init__(self, serial_interface=None, rotate=0, **kwargs): super(st7789, self).__init__(luma.lcd.const.st7789, serial_interface, **kwargs) self.capabilities(240,...

Checked with an Open-Smart 240x240 ST7789 and that is still working correctly with the above code changes. I've seen there are also `240x135` sized ST7789 displays available, such as: -...

@matemaciek > As for changes in display(), can you try setting w to 320? Maybe the dimensions are swapped there. Just tried both `320, 240` and `240, 320` on `w,...