print("Hello, OLED HERE!")
print('DATE: 22/11/2023')
#4 STEP
#Import OLED library & I2C library
#Declare the I2C Pin --> SCL & SDA
#Create an object name of your OLED screen
#U can use your OLED screen
import OLED_Library
from machine import Pin, SoftI2C
Pin_scl_sda = SoftI2C( scl=Pin(22), sda=Pin(21))
#Create object name using OOP(Object Oriented Programming)
#Library name. Class name
Screen= OLED_Library.SSD1306_I2C( width = 128, height = 64, i2c = Pin_scl_sda)
Screen.fill(1) #0 for black, 1 for white
Screen.text('OLED Awesome!!', 10, 3, 0)
Screen.show()
Screen.text('OLED Awesome!!', 10, 20, 0)
Screen.show()