Table of Contents
Example Description
The example demonstrates how to make the robot go in a circle with different motor speeds in the Python Coding Environment.

Code

sprite = Sprite('Tobi')
quarky = Quarky()

quarky.runmotor("L", "FORWARD", 20)
quarky.runmotor("R", "FORWARD", 100)

Output