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