from machine import Pin, SoftI2C
import ssd1306
from time import sleep
#Inisiasi Pin ESP32
i2c = SoftI2C(scl=Pin(22), sda=Pin(21))
oled_width = 128
oled_height = 64
oled = ssd1306.SSD1306_I2C(oled_width, oled_height, i2c)
oled.text('SISTEM EMBEDDED', 5, 15)
oled.text('KELOMPOK DUA', 15, 30)
oled.show()