from Control import *
import time

#Creating object 'control' of 'Control' class.
control=Control()

#Turn the robot dog's body 20 degrees to the left	
for i in range(10,-10,-1):
	control.attitude(0,0,i)
	time.sleep(0.1)


