Pycom SH1107 I2C OLED Screen Driver (WIP)
-
https://github.com/markwinap/Pycom-SH1107
# main.py -- put your code here! from SH1107 import SH1107 screen = SH1107() screen.init() screen.clearDisplay() screen.verticalMode() # screen.horizontalMode() screen.contrastLevel(128) # 0 - 255 for x in range(20): screen.textXY(x, 0) screen.string("Hello World " + str(x))