from machine import Pin, I2C # "Pin" means use the PICOS pin Numbers (Not GPIO)
from ssd1306 import SSD1306_I2C

WIDTH = 126 # INSTEAND OF 128 - MY AMAZON BOARDS WILL ERROR/FAIL IF YOU USE 128
HEIGHT = 64
i2c=I2C(0,scl=Pin(17),sda=Pin(16),freq=200000) # Declares which i2c port to use on the PICO
oled = SSD1306_I2C(WIDTH, HEIGHT, i2c)
oled.fill(0) # CLEARS THE SCREEN
oled. text("Hello World", 0, 0) # write starting to-left - LOADS TEXT IN THE BUFFER
oled.show() # DISPLAYS THE TEXT HELD IN THE BUFFER