import machine as mach
import time as t
from machine import Pin
led=Pin(1, Pin.OUT)
count=0
while count<5:
    led.on()
    t.sleep(2)
    print("led on, {}".format(count))
import machine as mach
import time as t
from machine import Pin
led=Pin(1, Pin.OUT)
count=0
while count<5:
    led.on()
    t.sleep(2)
    print("led on, {}".format(count))