OLED Unit
Unit OLED is a 1.3-inch OLED expansion screen unit. Driveing by SH1107, and the resolution is 128*64, monochrome display.
Support the following products:
- Micropython Example::
from unit import OLEDUnit from hardware import * i2c0 = I2C(0, scl=Pin(33), sda=Pin(32), freq=100000) display = OLEDUnit(i2c).display
display.clear(0xffffff) # Clear screen
