from machine import Pin from time import sleep Rele= Pin(28, Pin.OUT) while True: Rele.toggle() sleep(1)