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
We will be using Nav2 to implement our path planning component. Nav2 is an open source stack that takes in a robots position via an odometry topic and can also take in a series of GPS waypoints and a map of occupied and unoccupied space before planning a path for the robot to take to reach the waypoints. This path is outputted as a series of cmd_vel messages that tell the robot what speed and direction to go to move through the waypoints.
Nav2 is a whole stack in and of itself and so requires various inputs and configurations beyond what was mentioned above. The gist of this task is to get it set up and working for our robot sow e can integrate it with the rest of our stack.
Nav2 is set up and given a set of GPS waypoints, provides a series of cmd_vel messages for our robot to go through
Todo
Go through Nav2 docs and determine what is needed and what we currently have
Look into URDF requirements
Look into how to provide custom GPS waypoints
Compile the inputs/requirements as a list of ros2 topic names where relavant and also write down the required transform tree and the list of outputs as a list of ros2 topic names
Configure Nav2 for our robot and write a launch file for it
Test it out while sensors are running but NOT control nodes
The text was updated successfully, but these errors were encountered:
Overview
We will be using Nav2 to implement our path planning component. Nav2 is an open source stack that takes in a robots position via an
odometry
topic and can also take in a series of GPS waypoints and a map of occupied and unoccupied space before planning a path for the robot to take to reach the waypoints. This path is outputted as a series ofcmd_vel
messages that tell the robot what speed and direction to go to move through the waypoints.Nav2 is a whole stack in and of itself and so requires various inputs and configurations beyond what was mentioned above. The gist of this task is to get it set up and working for our robot sow e can integrate it with the rest of our stack.
Relevant resources
Nav2 docs
Acceptance criteria
cmd_vel
messages for our robot to go throughTodo
The text was updated successfully, but these errors were encountered: