예제 #1
0
from RobotCommunications import RobotCommunications

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


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

예제 #3
0
from RobotCommunications import RobotCommunications
import time


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


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


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


r = RobotCommunications(debug=True)
r.moveBackwards(100)
time.sleep(2.3)
r.stop()
예제 #7
0
파일: kill_all.py 프로젝트: Luddzik/sdp_12
from RobotCommunications import RobotCommunications

r = RobotCommunications(debug=True)
r.stop()
예제 #8
0
파일: move.py 프로젝트: sgupta2912/sdp_12
from RobotCommunications import RobotCommunications
import time

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