from machine import Pin,I2C
import ssd1306
scla = Pin(6)
sdaa = Pin(7)
i2c = I2C(0,scl=scla,sda=sdaa)
oled_width = 128
oled_height = 64
oled = ssd1306.SSD1306_I2C(oled_width,oled_height,i2c)
oled.text('Good Morning',10,10)
oled.show()
from machine import Pin,I2C
import ssd1306
scla = Pin(6)
sdaa = Pin(7)
i2c = I2C(0,scl=scla,sda=sdaa)
oled_width = 128
oled_height = 64
oled = ssd1306.SSD1306_I2C(oled_width,oled_height,i2c)
oled.text('Good Morning',10,10)
oled.show()