from machine import Pin, Soft12C
from time import sleep
import sh1107
#Init Soft 12c Interface
12c = Soft12C(sda=Pin =(27), scl=Pin (26), freq=40000)
oled = sh1107.SH1107_12C(128, 64, i2c)
#Small delay to all the cut to bonitialize
sleep(1)
#Display a testnevage
oled.fill(0) #Clear the screen
oled.text("Hello", 10, 0)
oled.text("world", 10,10)
oled.show()