micropython-ssd1306 icon indicating copy to clipboard operation
micropython-ssd1306 copied to clipboard

Not work multiple display

Open savasg opened this issue 4 years ago • 0 comments

Not work multiple display. Work only latest ininztalize.

if

oled1 = SSD1306_SPI(128, 64, spi, Pin(17),Pin(20), Pin(16)) oled3 = SSD1306_SPI(128, 64, spi, Pin(17),Pin(20), Pin(13)) oled2 = SSD1306_SPI(128, 64, spi, Pin(17),Pin(20), Pin(14))

work only oled2

oled1 = SSD1306_SPI(128, 64, spi, Pin(17),Pin(20), Pin(16)) oled2 = SSD1306_SPI(128, 64, spi, Pin(17),Pin(20), Pin(14)) oled3 = SSD1306_SPI(128, 64, spi, Pin(17),Pin(20), Pin(13))

work only oled3

if i control the cs pins myself it works correctly

savasg avatar Oct 18 '21 20:10 savasg