import time
from machine import Pin, UART
print("Starting the script")
# Csak egy GPIO pin állapotának ellenőrzése
led = Pin(25, Pin.OUT)
led.on()
print("LED should be on")
time.sleep(2)
led.off()
print("LED should be off")
time.sleep(2)
print("End of script")