from machine import Pin,SoftI2C
from time import sleep,sleep_ms
i2c = SoftI2C(scl=Pin(32),sda=Pin(33))
from SSD1306 import SSD1306_I2C
oled = SSD1306_I2C(128,64,i2c)
oled.text("Name:CC",5,10)
oled.text("Class:Four(5)",5,20)
oled.text("Student_ID:1102",5,30)
oled.show()