UBISS2024exam
import time
from machine import Pin
x = Pin(6, Pin.OUT)
while (True):
x.on()
time.sleep_ms(500)
x.off()
time.sleep_ms(100)
import time
from machine import Pin
x = Pin(6, Pin.OUT)
while (True):
x.on()
time.sleep_ms(500)
x.off()
time.sleep_ms(100)