from machince import Pin
import time
Green=Pin('LED',Pin.OUT)
Red=Pin(3,Pin.OUT)
Yellow=Pin(2,Pin.OUT)
while True:
Green.value(1)
print("Go")
Red.value(0)
Yellow.value(0)
from machince import Pin
import time
Green=Pin('LED',Pin.OUT)
Red=Pin(3,Pin.OUT)
Yellow=Pin(2,Pin.OUT)
while True:
Green.value(1)
print("Go")
Red.value(0)
Yellow.value(0)