Download the Thonny IDE: https://thonny.org/Download required firmware: DOWNLOAD FIRMWARECopyimport machine import time led = machine.Pin('LED', machine.Pin.OUT) while True: led.value(True) time.sleep(1) led.value(False) time.sleep(1)