spi mode configuration
Hello! please make possibility for changing spi mode in init. because some displays requres differen spi modes! for example this display use mode 3
Any idea what variant of the ST7789 the display is using? Must admit I'm a little confused that it would require a different SPI mode
Does it work if you set the SPI mode on the private _spi object and re-call init?
display = ST7789(...)
display._spi.mode = 3
display._init()
Any idea what variant of the ST7789 the display is using? Must admit I'm a little confused that it would require a different SPI mode
Does it work if you set the SPI mode on the private _spi object and re-call init?
display = ST7789(...) display._spi.mode = 3 display._init()
Hello! i add disp.reset() before disp._init() and it works! Thank you!
i use same display as in photo