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