from machine import Pin
from time import sleep
led= Pin(2,Pin.OUT)
while(True):
print("LED YANDI")
led.value(1)
sleep(1)
print("LED SÖNDÜ")
led.value(0)
sleep(1)from machine import Pin
from time import sleep
led= Pin(2,Pin.OUT)
while(True):
print("LED YANDI")
led.value(1)
sleep(1)
print("LED SÖNDÜ")
led.value(0)
sleep(1)