from machine import Pin, I2C
from ssd1306 import SSD1306_I2C
import framebuf
WIDTH = 128
HEIGHT = 59
i2c=I2C(0,scl = Pin(17),sda = Pin(16),freq = 200000)
oled = SSD1306_I2C(WIDTH,HEIGHT,i2c)
oled.fill(0)
oled.text("ELECTRONICS",15,7)
oled.show()from machine import Pin, I2C
from ssd1306 import SSD1306_I2C
import framebuf
WIDTH = 128
HEIGHT = 59
i2c=I2C(0,scl = Pin(17),sda = Pin(16),freq = 200000)
oled = SSD1306_I2C(WIDTH,HEIGHT,i2c)
oled.fill(0)
oled.text("ELECTRONICS",15,7)
oled.show()