import machine
from machine import Pin

led=machine.Pin(2,Pin.OUT)
led.on()
led.off()