from ssd1306 import SSD1306_I2C
from machine import Pin, I2C
i2c=I2C(0,sda=Pin(0), scl=Pin(1), freq=400000)
oled = SSD1306_I2C(128, 64, i2c)
oled.text("Welcome ", 2, 0)
oled.text("Pradhnesh Dalvi", 2, 10)
oled.text("performing IoT ", 2, 20)
oled.text("Practical with", 2, 30)
oled.text("Raspberry Pi.", 2, 40)
oled.show()