This is an old revision of the document!
Create a simple program in main.py:
from cubloc import Output, High, Low, Delay LED_PIN = 25 Output(LED_PIN) while True: High(LED_PIN) Delay(500) Low(LED_PIN) Delay(500)
This toggles the onboard LED every 500 ms.