This is an old revision of the document!
Set a digital output pin high.
from cubloc import High High(pin: int)
from time import sleep from cubloc import Output, High, Low LED = 25 Output(led_pin) while True: High(LED) print("LED ON") sleep(0.5) Low(LED) print("LED OFF") sleep(0.5)