from machine import Pin, I2C
import ssd1306
# ESP32 Pin assignment
i2c = I2C(0, scl=Pin(22), sda=Pin(21))
oled_width = 128
oled_height = 64
oled = ssd1306.SSD1306_I2C(oled_width, oled_height, i2c)
oled.text('Lat:34.134037', 5, 10)
oled.text('Long:-117.89521', 5, 20)
oled.text('Speed: 0 MPH', 5, 30)
oled.text('ELV: 613 Feet', 5, 40)
oled.text('Sat: 9', 5, 50)
oled.show()