from machine import*
from time import*
Led=Pin(34,Pin.OUT)
for i in range (4):
     Led.on()
     Sleep(0.5)
     Led.off()