RoboDK Forum
Telescopic axis and robot are not synchronizing——革命制度党ntable Version

+- RoboDK Forum (//www.sinclairbody.com/forum)
+-- Forum: RoboDK (EN) (//www.sinclairbody.com/forum/Forum-RoboDK-EN)
+ - - -论坛:通用RoboDK问题(//www.sinclairbody.com/forum/Forum-General-questions-about-RoboDK)
+--- Thread: Telescopic axis and robot are not synchronizing (/Thread-Telescopic-axis-and-robot-are-not-synchronizing)



Telescopic axis and robot are not synchronizing-MohammedKhadeer-12-16-2022

Hello, I am trying to implement Verticle Axis(Telescope) which is shown in Robodk Youtube training video (6-3) It is Working fine with python code but later when i attached the robot to the verticle axis the robot is fixed and verticle axis is moving. It's not taking the robot along with it.


RE: Verticle Axis(Telescope) and robot are not syncronizing-rshanor-12-17-2022

I recently went through this video as well. It looks like you did not have the right parent-child relationship set up correctly.

I made the Ranger_Base the parent of Ranger_Mid and made Ranger_Mid the parent of Robot_Frame. See the screenshot below.

You can check and set things like this over the API too.

Code:
In [7]: link = robolink.Robolink("127.0.0.1")
In [8]: item = link.Item("Robot_Frame")
In [9]: item.Parent().Name()
Out[9]: 'Ranger_Mid'