#Oled Display ansteuern
from machine import Pin, I2C
import ssd1306
i2c =I2C(0,scl=Pin(22),sda=Pin(21))
oled_width=128
oled_height=64
oled=ssd1306.SSD1306_I2C(oled_width,oled_height_i2c)
oled.text('Test',10,0)
oled.show()
#Oled Display ansteuern
from machine import Pin, I2C
import ssd1306
i2c =I2C(0,scl=Pin(22),sda=Pin(21))
oled_width=128
oled_height=64
oled=ssd1306.SSD1306_I2C(oled_width,oled_height_i2c)
oled.text('Test',10,0)
oled.show()