from machine import Pin
from time import sleep
led = Pin(15, Pin.OUT)
botao = Pin(18,Pin.OUT)
botao2 = Pin(19,Pin.OUT)
estado=0
anterior=0
while True:
print("\nRodando...\n")
valor=botao.value()
valor2 = botao2.value()
if anterior == 0:
print("Botão 1 pressionado")
estado = not estado
led.value(estado)
if valor2 == 1:
print("Botão 2 pressionado")
estado = not estado
led.value(estado)
anterior = valor
anterior = valor2
sleep(0.2)