from machine import Pin
from utime import sleep
ledPin = Pin(6,Pin.OUT)
while True :
ledPin.value(1)
print("LED ON")
sleep(2)
ledPin.value(0)
print("LED OFF")
sleep(1)
from machine import Pin
from utime import sleep
ledPin = Pin(6,Pin.OUT)
while True :
ledPin.value(1)
print("LED ON")
sleep(2)
ledPin.value(0)
print("LED OFF")
sleep(1)