Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
I try to use ssd1306 library to 72*40 pixel OLED. But it seem display start x-pixel 28, and can't display after x-pixel 100.
import ssd1306
oled = ssd1306.SSD1306_I2C(72, 40, i2c) oled.fill(1) oled.show()
oled = ssd1306.SSD1306_I2C(72, 40, i2c)
oled.fill(1)
oled.show()
oled.text('123456789', 0, 0) oled.show()
oled.text('123456789', 0, 0)
oled.text('12345', 28, 0) oled.show()
oled.text('12345', 28, 0)