from system import Pin
from utime import sleep
print("heloo....")
led = Pin(5,Pin.OUT)
while True:
led.toggle()
sleep(0.5);
from system import Pin
from utime import sleep
print("heloo....")
led = Pin(5,Pin.OUT)
while True:
led.toggle()
sleep(0.5);