# ==================================================
"""
Project objective: Blink four external LEDs connected to the Raspberry Pi Pico
Author: Georgia Donohue
"""
# ==================================================
# modules
from machine import Pin
from time import sleep
# setting GPIO Pins 6-9 as OUT
# note: any GPIO pin can be used
LED1 = Pin(14, Pin.OUT)
LED2 = Pin(7, Pin.OUT)
# continuously blink two LEDs at the same time while the board has power
while True:
LED1.on()
LED2.on()
sleep(0.5)
LED1.off()
sleep(0.5)