This commit is contained in:
gac-S_Changer
2017-01-26 16:21:24 +01:00
parent 682123b6d9
commit b7dff16bc7

25
script/TestRobotCmds2.py Normal file
View File

@@ -0,0 +1,25 @@
if robot_req.read() != 0:
raise Exception("Ongoing command")
if robot_ack.read() != 0:
raise Exception("Robot is not ready")
robot_cmd.write(1)
args = [0,0,0,0,0,0]
robot_args.write(to_array(args, 'i'))
robot_req.write(1)
while robot_ack.read() == 0:
time.sleep(0.001)
err = robot_ack.take()
if err == 1:
ret = robot_ret.read()
print ret
if err == 2:
print ("Invalid command: " + str(command))
print ("Unknown error: " + str(err))
robot_req.write(0)
while robot_ack.read() != 0:
time.sleep(0.001)