from machine import Pin
import time
ledr = Pin(2, Pin.OUT)
ledb = Pin(23, Pin.OUT)
while True:
ledr.on()
ledb.off()
time.sleep(0.5)
ledr.off()
ledb.on()
time.sleep(0.5)
from machine import Pin
import time
ledr = Pin(2, Pin.OUT)
ledb = Pin(23, Pin.OUT)
while True:
ledr.on()
ledb.off()
time.sleep(0.5)
ledr.off()
ledb.on()
time.sleep(0.5)