import machine
from machine import Pin
LedRojo = Pin(13,Pin.OUT)
LedAmarillo = Pin(26,Pin.OUT)
LedAzul = Pin(33,Pin.OUT)
Entrada1 = Pin(23,Pin.IN,Pin.PULL_UP)
Entrada2 = Pin(21,Pin.IN,Pin.PULL_UP)
Entrada3 = Pin(18,Pin.IN,Pin.PULL_UP)
Entrada4 = Pin(5,Pin.IN,Pin.PULL_UP)
Entrada5 = Pin(4,Pin.IN,Pin.PULL_UP)
Entrada6 = Pin(2,Pin.IN,Pin.PULL_UP)
Entrada7 = Pin(15,Pin.IN,Pin.PULL_UP)
while True:
A=Entrada1.value()
B=Entrada2.value()
C=Entrada3.value()
D=Entrada4.value()
E=Entrada5.value()
F=Entrada6.value()
G=Entrada7.value()
azul= A or B or C or D
amarillo = A or B or E or F
rojo = A or C or E or G
LedAmarillo.value(amarillo)
LedAzul.value(azul)
LedRojo.value(rojo)