from machine import Pin, I2C
import ssd1306
import time
# Configuración I2C
i2c = I2C(0, scl=Pin(1), sda=Pin(0), freq=400000)
# Configuración pantalla OLED 128x64
oled = ssd1306.SSD1306_I2C(128, 64, i2c)
# Limpiar pantalla
oled.fill(0)
# Mostrar texto
oled.text("Christian Aquino San Juan", 10, 20)
oled.text("ISC 802V", 30, 40)
# Actualizar pantalla
oled.show()