ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
Besides writing a custom node, I can come up with two options:
I've used both in the past.
Try to avoid writing code yourself as much as possible.
2 | No.2 Revision |
Besides writing a custom node, I can come up with two options:
I've used both in the past.
Try to avoid writing code yourself as much as possible.
A previous Q&A about transform
is #q261935, which shows how to format complex expressions.
3 | No.3 Revision |
Besides writing a custom node, I can come up with two options:
I've used both in the past.
Try to avoid writing code yourself as much as possible.
A previous Q&A about transform
is #q261935, which shows how to format complex expressions.
And something to realise: any additional nodes (or really: publishers and subscribers) you place between your input device and the final consumer of your Twist
s is going to add delay and jitter. That may not be a problem in your case, but it is something to keep in mind when working with such a system.
4 | No.4 Revision |
Besides writing a custom node, I can come up with two options:
I've used both in the past.
Try to avoid writing code yourself as much as possible.
topic. A previous Q&A about I've used both in the past. Try to avoid writing code yourself as much as possible.transform
is #q261935, which shows how to format complex expressions.expressions
And something to realise: any additional nodes (or really: publishers and subscribers) you place between your input device and the final consumer of your Twist
s is going to add delay and jitter. That may not be a problem in your case, but it is something to keep in mind when working with such a system.
5 | No.5 Revision |
Besides writing a custom node, I can come up with two options:
transform
is #q261935, which shows how to format complex expressionsI've used both in the past.
Try Option 1 will probably be the easiest to implement. Option 2 is the most flexible, as it's almost a custom node, but then as an argument to the topic_tools/transform
node.
In any case: try to avoid writing code yourself as much as possible.
And something to realise: any additional nodes (or really: publishers and subscribers) you place between your input device and the final consumer of your Twist
s is going to add delay and jitter. That may not be a problem in your case, but it is something to keep in mind when working with such a system.