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