import time
from machione import Pin
a=Pin(2,PIN.OUT)
while true :
    a.on()
time.sleep(0.2)
a.off()
time.sleep(0.2)