Open EdXian opened 5 years ago
I think because you close the connection every iteration. How about this?
import time
while True:
try:
pose = rob.get_pose()
print(pose)
print("============================")
time.sleep(0.05)
rob.close()
Hi all, The following is my test code
I found that the pose is fixed all time eventhough I changed the position of the tcp. How do I get the realtime position data of the tcp? thanks!!