You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to integrate the mbf navigation stack into an existing robot platform. My platform already has the ability to receive messages with a target heading to move the robot in that direction.
For starters , I want to implement a simple waypoint following mechanism: My node should receive a list of wgs84 waypoints. Then, I want to calculate the heading between the current robot position and the next waypoint (at a frequency of 1hz) and send the heading to the platform. When the distance between the current position and target position is smaller then some threshold, start with the next waypoint.
At a later time I want to extend this mechanism with other functionalities (e.g. object avoidance, etc)
I figured out that mbf_simple_nav is the best interface for my problem (I don't need a costmap right now). Could you give me some advice on how to start implementing the needed behaviours?
The text was updated successfully, but these errors were encountered:
Japp mbf_simple_nav is for usage without a map binding. Since your case don't need a map, this should be the right tool for you. Just implement the interfaces in mbf_abstract_core and load your implementations as plugin.
Hello,
I'm trying to integrate the mbf navigation stack into an existing robot platform. My platform already has the ability to receive messages with a target heading to move the robot in that direction.
For starters , I want to implement a simple waypoint following mechanism: My node should receive a list of wgs84 waypoints. Then, I want to calculate the heading between the current robot position and the next waypoint (at a frequency of 1hz) and send the heading to the platform. When the distance between the current position and target position is smaller then some threshold, start with the next waypoint.
At a later time I want to extend this mechanism with other functionalities (e.g. object avoidance, etc)
I figured out that mbf_simple_nav is the best interface for my problem (I don't need a costmap right now). Could you give me some advice on how to start implementing the needed behaviours?
The text was updated successfully, but these errors were encountered: