#made by AL SHIJA P. ZABALA (BSCpE | 3C-RTES | Laboratory 3 | 09/24/23)
from machine import Pin
import time

#Declaration of LED pin
led_pin = Pin(5, Pin.OUT)
blink_count = 0

while True:
    #LED on
    led_pin.on()
    time.sleep(1)
    
    #LED off
    led_pin.off()
    time.sleep(1)
    
    blink_count += 1
    
    # Print the count of blinks
    print("Blink", blink_count)