Example #1
0
from RobotCommunications import RobotCommunications

r = RobotCommunications(debug=True)
r.rotate(80, 1)
Example #2
0
from RobotCommunications import RobotCommunications
import time


r = RobotCommunications(debug=True)
r.moveSidewaysRight(100)
time.sleep(1)
r.stop()

Example #3
0
from RobotCommunications import RobotCommunications
import time


r = RobotCommunications(debug=True)
r.rotateLeft(100)
time.sleep(2)
r.stop()
Example #4
0
from RobotCommunications import RobotCommunications
import time


r = RobotCommunications(debug=True)
r.moveSideways(100)
time.sleep(1)
r.stop()
Example #5
0
from RobotCommunications import RobotCommunications
import time


r = RobotCommunications(debug=True)
r.moveForwards(100)
time.sleep(4.5)
r.stop()
Example #6
0
from RobotCommunications import RobotCommunications
import time


r = RobotCommunications(debug=True)
r.moveBackwards(100)
time.sleep(2.3)
r.stop()
Example #7
0
from RobotCommunications import RobotCommunications

r = RobotCommunications(debug=True)
r.stop()
Example #8
0
from RobotCommunications import RobotCommunications
import time

r = RobotCommunications(debug=True)
r.rotate(100)
time.sleep(1)
r.stop()