from machine import Pin, SoftI2C
from ssd1306 import SSD1306_I2C
from time import sleep
from lcd_api import LcdApi
from i2c_lcd import I2cLcd
I2C_ADDR = 0x27
totalRows = 4
totalColumns = 20
# ESP32 Pin assignment
i2c = SoftI2C(scl=Pin(22), sda=Pin(21), freq=100000)
lcd = I2cLcd(i2c, I2C_ADDR, totalRows, totalColumns)
lcd.move_to(0,1)
lcd.putstr("ECE283")
I2C_ADDR = 0x3c
oled_width = 128
oled_height = 64
oled = SSD1306_I2C(oled_width, oled_height, i2c, I2C_ADDR)
oled.invert(True)
oled.pixel(21,24,1)
oled.text('Embedded', 0, 0, 1)
oled.text(' Systems', 7, 8)
oled.text('Micro Python', 14, 16)
oled.show()