-
Notifications
You must be signed in to change notification settings - Fork 150
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WIP: python API for ROS2 #574
Comments
Can any MoveIt2 @moveit/maintainers help on this issue? Any reason why |
The error is about the subscription which probably succeeds for the robot_description but not for the srdf. I assume none of the original parameters make it through the python bindings or launch system. This sounds oddly familiar with moveit/moveit2#2219 and moveit/moveit2#2393. What config are you working on? |
When you launch |
I'm running the demo launch file of MTC:
@Abishalini, your hint resolved the SRDF issue. Thanks! Is there any way to run simple binaries/scripts and pass the corresponding parameters? Wouldn't it make sense to fetch those common parameters from the |
I've been running into this same issue with some C++ examples I have. I kinda like the idea of getting them from the What about |
I highly appreciate your effort for reenabling the Python API for ROS2. :-) Have you already progressed? Maybe this helps for getting a list of parameters from another node |
I had to resort to launch file loading. |
Hi @JafarAbdi,
I'm currently working on reenabling the Python API for the
ros2
branch of MTC, which you initially disabled when porting to ROS2. Unfortunately, I'm stuck with several issues. One of them is, that theRobotModelLoader
cannot access therobot_description_semantic
parameter, although it can accessrobot_description
:Any idea what is different between these parameters? Shouldn't the
rclcpp::Node
either be able to access both of them or none?The text was updated successfully, but these errors were encountered: