SimUKdev
SimUKdev
Interesting... I appear to have made some progress with this:  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,...