from machine import Pin
import time
CLK = Pin(16, Pin.OUT, value=0)
while True:
CLK.value(1) # Rising edge
time.sleep(1) # Half a second high
CLK.value(0) # Falling edge
time.sleep(1) # Half a second lowERC Warnings
flop2:CLK: Clock driven by combinatorial logic