Add a cmd_vel multiplexer #321
jmm-slamcore
started this conversation in
Ideas
Replies: 1 comment 2 replies
-
This is an interesting feature, but I'm not sure if we want to put it on the robot. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
When using the Create for autonomous navigation you might want to override navigation commands with keyboard or joystick teleop. Publishing commands to the
/cmd_vel
topic from multiple sources can cause issues as there is no priority between publishers.This is probably an advanced feature, but it could be nice to have an integrated cmd_vel multiplexer (which can be configured on the webserver using parameters) which subscribes to multiple topics like
/input/navigation
,/input/teleop
etc and then sends the correct commands to the robot based on priorities set in the configuration.There are existing packages that can do this (e.g. https://github.com/kobuki-base/cmd_vel_mux) but might be easier/useful to others if it is already integrated into the Create.
Beta Was this translation helpful? Give feedback.
All reactions