Support for Parameters? #239
-
Is there support for ros1 parameters in this crate? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hey great question! We do have (somewhat hacky) support for parameters via the roslibrust_rosapi crate which is in the source code: https://github.com/RosLibRust/roslibrust/tree/master/roslibrust_rosapi, but we haven't published as a standalone crate. That implementation relies on a running rosapi node, and simply makes service calls to the rosapi node to accomplish various things. A nice thing about that approach is that it can work with any of the backends as long as a rosapi node is running, and there is even a rosapi node for ROS2. There are a couple of possible paths to get from our current state to a working and well documented state:
To answer your question more clearly:
|
Beta Was this translation helpful? Give feedback.
Hey great question! We do have (somewhat hacky) support for parameters via the roslibrust_rosapi crate which is in the source code: https://github.com/RosLibRust/roslibrust/tree/master/roslibrust_rosapi, but we haven't published as a standalone crate. That implementation relies on a running rosapi node, and simply makes service calls to the rosapi node to accomplish various things.
A nice thing about that approach is that it can work with any of the backends as long as a rosapi node is running, and there is even a rosapi node for ROS2. There are a couple of possible paths to get from our current state to a working and well documented state: