from machine import Pin
from time import sleep
myLED=Pin('LED',Pin.OUT)
while True:
	myLED.value(1)
	sleep(.1)