from machine import Pin
from time import sleep_ms

luz = Pin(23, Pin.OUT, value=0)

botao = Pin(33, Pin.IN, Pin.PULL_UP)

estadoAnterior = estadoAtual = botao.value()

while True:
    estadoAtual = botao.value()
    if estadoAtual != estadoAnterior:
        if estadoAtual == 1:
            print('Solto')
            luz.on()         
        else:
            print('Pressionado')
            luz.off()
        estadoAnterior = estadoAtual