Esempio n. 1
0
from RobotCommunications import RobotCommunications

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


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

Esempio n. 3
0
from RobotCommunications import RobotCommunications
import time


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


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


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


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

r = RobotCommunications(debug=True)
r.stop()
Esempio n. 8
0
from RobotCommunications import RobotCommunications
import time

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