from machine import Pin, SoftI2C
I2C = SoftI2C(scl=Pin(12),sda=Pin(14))
from ssd1306 import SSD1306_I2C
# while 1:
# i=input("请在这里输入:")
# oled = SSD1306_I2C(128, 64, I2C, addr=0x3c)
# oled.text(i,0,0)
# oled.show()
oled = SSD1306_I2C(128, 64, I2C, addr=0x3c)
for i in range (0,64,10):
for j in range (0,128,8):
text=input("请在这里输入:")
oled.text(text,j,i)
oled.show()