###########################
### Code in MicroPython ###
###########################

import machine	# For hardware functions
import time		# For time functions

led = machine.Pin(3, machine.Pin.OUT)	# Set pin 3 (blue led on the shield) as an output

while True:			# Infinite loop
    led.toggle()	# Change the led's status
    time.sleep(0.5)	# Delay