from microbit import *
import time

while True:
    display.set_pixel(2,2,9)  # Turn on the central LED (coordinates 2, 2)
    time.sleep(1)             # Wait for 1 second
    display.set_pixel(2,2,0)  # Turn off the central LED
    time.sleep(1)             # Wait for 1 second
