from machine import Pin, SoftI2C
import ssd1306
# You can choose any other combination of I2C pins
i2c = SoftI2C(scl=Pin(5), sda=Pin(4))
# Set up the OLED display parameters
oled_width = 128
oled_height = 64
oled = ssd1306.SSD1306_I2C(oled_width, oled_height, i2c, addr=0x3c)
# Display 'Hello, World' messages on different lines
oled.text('7th Bangladesh', 0, 0)
oled.text('Robot Olympiad', 0, 20)
oled.text('2024 Loading...', 0, 40)
# Update the OLED display to show the messages
oled.show()