Open Loop
The StudioBot can move around without any feedback on what the wheels are doing.
import time
import BBS
bot = BBS.StudioBot()
#move forward at speed 80 for 1 second
bot.forward(80)
time.sleep(1)
bot.stop()import time
import BBS
bot = BBS.StudioBot()
#move left for 1 second
bot.left(80)
time.sleep(1)
bot.stop()
#move right for 1 second
bot.right(80)
time.sleep(1)
bot.stop()Last updated