import machine as gpio import utime as tm led=gpio.Pin(14,gpio.Pin.OUT) while True: led.toggle() tm.sleep(2)