//Big Circle 2 Code starts on the next line

use Libraries.Robots.Lego.Motor //Rotate and then reverse 2 motors connected to

Motor motor //port b and c.

motor:SetSpeed("B",50) //sets the speed 200. Good argument to change.

motor:SetSpeed("C",25)

motor:RotateByDegrees("B", 360*7) // circles counter-clockwise.

motor:RotateForward("C")

motor:Wait("B")

motor:RotateBackward("C")

motor:RotateByDegrees("B", -360*7) //circles clockwise to start.

motor:Wait("B")

//END OF BigCIRCLE2 CODE