from machine import Pin, I2C
from ssd1306 import SSD1306_I2C # Modul für SSD1306
# I2C --------------------------------------------------------------
i2c = I2C(0,sda=Pin(0),scl=Pin(1),freq=400000) # I2C-Bus 0
oled = SSD1306_I2C(128,64,i2c)
#-------------------------------------------------------------------
oled.fill(0)
oled.text("Hello HE054!!!!!!",0,32)
oled.show()