Step 1 of 5
Connect your board
Plug your PyBot board into your computer with a USB cable. Click the Connect button in the toolbar and select your board from the list.
# this is test code
import pybot
import time
while True:
pybot.led.on(1)
time.sleep(0.5)
pybot.led.off(1)
time.sleep(0.5)
test()