from machine import I2C,Pin 
from ssd1306 import SSD1306_I2C 
i2c = I2C(sda=Pin(25), scl=Pin(27)) 
oled = SSD1306_I2C(128, 64, i2c, addr=0x3c) 
oled.text("F", 0, 0) 
oled.text("F", 0, 44)
oled.text("F", 120, 0) 
oled.text("F", 120, 44)
oled.show()