from machine import Pin, I2C
from ssd1306 import SSD1306_I2C
i2c=I2C(0,sda=Pin(0), sc1=Pin(1), freq=400000)
oled = SSD1306_I2C(128, 64, i2c)
oled.text("Welcome to ",8, 0)
oled.text("IOT Projects",8, 16)
oled.text("using PYTHON",8, 32)
oled.text("(CSE - 4110)",8, 48)
oled.show()