|
Package Summary
Tags | No category tags. |
Version | 0.3.5 |
License | Apache-2.0 |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/ros-planning/navigation2.git |
VCS Type | git |
VCS Version | eloquent-devel |
Last Updated | 2021-01-04 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Carlos Orduno
- Steve Macenski
Authors
Warning: As with the rest of nav2
, this package is still in development and only works with Turtlebot 3 at the moment. Currently collision avoidance has not been integrated. The user is advised to not use this feature on a physical robot for safety reasons. As of now, this feature should only be used in simulations.
Recoveries
The nav2_recoveries
package implements, as the name suggests, a module for executing simple controlled robot movements such as rotating on its own axis or moving linearly.
The package defines:
- A
Recovery
template which is used as a base class to implement specific recovery. - The
BackUp
,Spin
andStop
recoveries.
Overview
Recovery define simple predictable movements that components can leverage for defining more complex behavior. For example, nav2
uses recoveries for executing recovery behaviors, such as the ones defined on the BtNavigator.
Currently the package provides the following recoveries:
- Spin performs an in-place rotation by a given angle.
- Back Up performs an linear translation by a given distance.
- Stop brings the robot to a stationary state.
Implementation
The module is implemented as a single node containing multiple recoveries and follows the nav2
task hierarchy. Each recovery is defined as a nav2_task
with corresponding command and result message definitions.
The Recovery
base class manages the task server, provides a robot interface and calls the recovery’s update functions.
To gain insight into the package lets go over how to implement and execute a new recoveries.
Defining a recovery
In this section we’ll go over how to define a new recovery and implement the corresponding recovery.
The first step is to provide the task definition inside the nav2_tasks
package. For example, lets define a SomeRecovery
task interface, i.e. the types of messages to use for the command and result, as well as the client and server.
namespace nav2_tasks
{
using SomeRecoveryCommand = geometry_msgs::msg::Point;
using SomeRecoveryResult = std_msgs::msg::Empty;
using SomeRecoveryTaskClient = TaskClient<SomeRecoveryCommand, SomeRecoveryResult>;
using SomeRecoveryTaskServer = TaskServer<SomeRecoveryCommand, SomeRecoveryResult>;
template<>
inline const char * getTaskName<SomeRecoveryCommand, SomeRecoveryResult>()
{
return "SomeRecoveryTask";
}
} // namespace nav2_tasks
For this example we arbitrarily pick geometry_msgs::msg::Point
and std_msgs::msg::Empty
as message types for command and result.
Next we define the class for our new recovery. This class should derive from Recovery
and use the command and result messages defined on the corresponding task.
class SomeRecovery : public Recovery<nav2_tasks::SomeRecoveryCommand, nav2_tasks::SomeRecoveryResult>
On the implementation of SomeRecovery
all we do is override onRun
and onCycleUpdate
.
using nav2_tasks
TaskStatus SomeRecovery::onRun(const SomeRecoveryCommand::SharedPtr command)
{
/* onRun code */
}
TaskStatus SomeRecovery::onCycleUpdate(SomeRecoveryResult & result)
{
/* onCycleUpdate code */
}
The onRun
method is the entry point for the recovery and here we should:
- Catch the command.
- Perform checks before the main execution loop.
- Possibly do some initialization.
- Return a
nav2_tasks::TaskStatus
given the initial checks.
The onCycleUpdate
method is called periodically until it returns FAILED
or SUCCEEDED
, here we should:
- Set the robot in motion.
- Perform some unit of work.
- Check if the robot state, determine if work completed
- Return a
nav2_tasks::TaskStatus
.
Defining the recovery’s client
Recoveries use the nav2_tasks
interface, so we need to define the task client:
nav2_tasks::TaskClient<SomeRecoveryCommand, SomeRecoveryResult> some_recovery_task_client;
To send requests we create the command and sent it over the client:
SomeRecoveryCommand::SharedPtr command;
// Fill command
some_recovery_task_client.sendCommand(command)
(optional) Define the Behavior Tree action node
For using recoveries within a behavior tree such as bt_navigator, then a corresponding action node needs to be defined. Checkout nav2_tasks
for examples on how to implement one.
Plans
- Check for collision before executing a recovery. Issues 379 and 533.
- Remove the stop recovery, move the funcionality to the robot class. Issue 575
- Consider moving
nav2_recoveries
altogether to thenav2_robot
package. Issue 378. - Depending on the feedback from the community we might want to develop this package to include a wide variety of recoveries (arcs) to support all kinds of task, navigation (lattice-based), docking, etc.
- Define smooth transitions between motions. Issue 411.
- Make the existing recoveries configurable for other robots.
Refer to Github for an up-to-date list.
Wiki Tutorials
Package Dependencies
System Dependencies
Dependant Packages
Name | Deps |
---|---|
navigation2 |
Launch files
Messages
Services
Plugins
Recent questions tagged nav2_recoveries at Robotics Stack Exchange
|
Package Summary
Tags | No category tags. |
Version | 0.2.6 |
License | Apache-2.0 |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/ros-planning/navigation2.git |
VCS Type | git |
VCS Version | dashing-devel |
Last Updated | 2020-12-28 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Carlos Orduno
- Steve Macenski
Authors
Warning: As with the rest of nav2
, this package is still in development and only works with Turtlebot 3 at the moment. Currently collision avoidance has not been integrated. The user is advised to not use this feature on a physical robot for safety reasons. As of now, this feature should only be used in simulations.
Recoveries
The nav2_recoveries
package implements, as the name suggests, a module for executing simple controlled robot movements such as rotating on its own axis or moving linearly.
The package defines:
- A
Recovery
template which is used as a base class to implement specific recovery. - The
BackUp
,Spin
andStop
recoveries.
Overview
Recovery define simple predictable movements that components can leverage for defining more complex behavior. For example, nav2
uses recoveries for executing recovery behaviors, such as the ones defined on the BtNavigator.
Currently the package provides the following recoveries:
- Spin performs an in-place rotation by a given angle.
- Back Up performs an linear translation by a given distance.
- Stop brings the robot to a stationary state.
Implementation
The module is implemented as a single node containing multiple recoveries and follows the nav2
task hierarchy. Each recovery is defined as a nav2_task
with corresponding command and result message definitions.
The Recovery
base class manages the task server, provides a robot interface and calls the recovery’s update functions.
To gain insight into the package lets go over how to implement and execute a new recoveries.
Defining a recovery
In this section we’ll go over how to define a new recovery and implement the corresponding recovery.
The first step is to provide the task definition inside the nav2_tasks
package. For example, lets define a SomeRecovery
task interface, i.e. the types of messages to use for the command and result, as well as the client and server.
namespace nav2_tasks
{
using SomeRecoveryCommand = geometry_msgs::msg::Point;
using SomeRecoveryResult = std_msgs::msg::Empty;
using SomeRecoveryTaskClient = TaskClient<SomeRecoveryCommand, SomeRecoveryResult>;
using SomeRecoveryTaskServer = TaskServer<SomeRecoveryCommand, SomeRecoveryResult>;
template<>
inline const char * getTaskName<SomeRecoveryCommand, SomeRecoveryResult>()
{
return "SomeRecoveryTask";
}
} // namespace nav2_tasks
For this example we arbitrarily pick geometry_msgs::msg::Point
and std_msgs::msg::Empty
as message types for command and result.
Next we define the class for our new recovery. This class should derive from Recovery
and use the command and result messages defined on the corresponding task.
class SomeRecovery : public Recovery<nav2_tasks::SomeRecoveryCommand, nav2_tasks::SomeRecoveryResult>
On the implementation of SomeRecovery
all we do is override onRun
and onCycleUpdate
.
using nav2_tasks
TaskStatus SomeRecovery::onRun(const SomeRecoveryCommand::SharedPtr command)
{
/* onRun code */
}
TaskStatus SomeRecovery::onCycleUpdate(SomeRecoveryResult & result)
{
/* onCycleUpdate code */
}
The onRun
method is the entry point for the recovery and here we should:
- Catch the command.
- Perform checks before the main execution loop.
- Possibly do some initialization.
- Return a
nav2_tasks::TaskStatus
given the initial checks.
The onCycleUpdate
method is called periodically until it returns FAILED
or SUCCEEDED
, here we should:
- Set the robot in motion.
- Perform some unit of work.
- Check if the robot state, determine if work completed
- Return a
nav2_tasks::TaskStatus
.
Defining the recovery’s client
Recoveries use the nav2_tasks
interface, so we need to define the task client:
nav2_tasks::TaskClient<SomeRecoveryCommand, SomeRecoveryResult> some_recovery_task_client;
To send requests we create the command and sent it over the client:
SomeRecoveryCommand::SharedPtr command;
// Fill command
some_recovery_task_client.sendCommand(command)
(optional) Define the Behavior Tree action node
For using recoveries within a behavior tree such as bt_navigator, then a corresponding action node needs to be defined. Checkout nav2_tasks
for examples on how to implement one.
Plans
- Check for collision before executing a recovery. Issues 379 and 533.
- Remove the stop recovery, move the funcionality to the robot class. Issue 575
- Consider moving
nav2_recoveries
altogether to thenav2_robot
package. Issue 378. - Depending on the feedback from the community we might want to develop this package to include a wide variety of recoveries (arcs) to support all kinds of task, navigation (lattice-based), docking, etc.
- Define smooth transitions between motions. Issue 411.
- Make the existing recoveries configurable for other robots.
Refer to Github for an up-to-date list.
Wiki Tutorials
Package Dependencies
System Dependencies
Dependant Packages
Name | Deps |
---|---|
navigation2 |
Launch files
Messages
Services
Plugins
Recent questions tagged nav2_recoveries at Robotics Stack Exchange
|
Package Summary
Tags | No category tags. |
Version | 1.0.12 |
License | Apache-2.0 |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/ros-planning/navigation2.git |
VCS Type | git |
VCS Version | galactic |
Last Updated | 2022-09-15 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Carlos Orduno
- Steve Macenski
Authors
Warning: As with the rest of nav2
, this package is still in development and only works with Turtlebot 3 at the moment. Currently collision avoidance has not been integrated. The user is advised to not use this feature on a physical robot for safety reasons. As of now, this feature should only be used in simulations.
Recoveries
The nav2_recoveries
package implements, as the name suggests, a module for executing simple controlled robot movements such as rotating on its own axis or moving linearly.
The package defines:
- A
Recovery
template which is used as a base class to implement specific recovery. - The
BackUp
,Spin
andStop
recoveries.
Overview
Recovery define simple predictable movements that components can leverage for defining more complex behavior. For example, nav2
uses recoveries for executing recovery behaviors, such as the ones defined on the BtNavigator.
Currently the package provides the following recoveries:
- Spin performs an in-place rotation by a given angle.
- Back Up performs an linear translation by a given distance.
- Stop brings the robot to a stationary state.
Implementation
The module is implemented as a single node containing multiple recoveries and follows the nav2
task hierarchy. Each recovery is defined as a nav2_task
with corresponding command and result message definitions.
The Recovery
base class manages the task server, provides a robot interface and calls the recovery’s update functions.
To gain insight into the package lets go over how to implement and execute a new recoveries.
Defining a recovery
In this section we’ll go over how to define a new recovery and implement the corresponding recovery.
The first step is to provide the task definition inside the nav2_tasks
package. For example, lets define a SomeRecovery
task interface, i.e. the types of messages to use for the command and result, as well as the client and server.
namespace nav2_tasks
{
using SomeRecoveryCommand = geometry_msgs::msg::Point;
using SomeRecoveryResult = std_msgs::msg::Empty;
using SomeRecoveryTaskClient = TaskClient<SomeRecoveryCommand, SomeRecoveryResult>;
using SomeRecoveryTaskServer = TaskServer<SomeRecoveryCommand, SomeRecoveryResult>;
template<>
inline const char * getTaskName<SomeRecoveryCommand, SomeRecoveryResult>()
{
return "SomeRecoveryTask";
}
} // namespace nav2_tasks
For this example we arbitrarily pick geometry_msgs::msg::Point
and std_msgs::msg::Empty
as message types for command and result.
Next we define the class for our new recovery. This class should derive from Recovery
and use the command and result messages defined on the corresponding task.
class SomeRecovery : public Recovery<nav2_tasks::SomeRecoveryCommand, nav2_tasks::SomeRecoveryResult>
On the implementation of SomeRecovery
all we do is override onRun
and onCycleUpdate
.
using nav2_tasks
TaskStatus SomeRecovery::onRun(const SomeRecoveryCommand::SharedPtr command)
{
/* onRun code */
}
TaskStatus SomeRecovery::onCycleUpdate(SomeRecoveryResult & result)
{
/* onCycleUpdate code */
}
The onRun
method is the entry point for the recovery and here we should:
- Catch the command.
- Perform checks before the main execution loop.
- Possibly do some initialization.
- Return a
nav2_tasks::TaskStatus
given the initial checks.
The onCycleUpdate
method is called periodically until it returns FAILED
or SUCCEEDED
, here we should:
- Set the robot in motion.
- Perform some unit of work.
- Check if the robot state, determine if work completed
- Return a
nav2_tasks::TaskStatus
.
Defining the recovery’s client
Recoveries use the nav2_tasks
interface, so we need to define the task client:
nav2_tasks::TaskClient<SomeRecoveryCommand, SomeRecoveryResult> some_recovery_task_client;
To send requests we create the command and sent it over the client:
SomeRecoveryCommand::SharedPtr command;
// Fill command
some_recovery_task_client.sendCommand(command)
(optional) Define the Behavior Tree action node
For using recoveries within a behavior tree such as bt_navigator, then a corresponding action node needs to be defined. Checkout nav2_tasks
for examples on how to implement one.
Plans
- Check for collision before executing a recovery. Issues 379 and 533.
- Remove the stop recovery, move the funcionality to the robot class. Issue 575
- Consider moving
nav2_recoveries
altogether to thenav2_robot
package. Issue 378. - Depending on the feedback from the community we might want to develop this package to include a wide variety of recoveries (arcs) to support all kinds of task, navigation (lattice-based), docking, etc.
- Define smooth transitions between motions. Issue 411.
- Make the existing recoveries configurable for other robots.
Refer to Github for an up-to-date list.
Wiki Tutorials
Package Dependencies
System Dependencies
Dependant Packages
Name | Deps |
---|---|
navigation2 |
Launch files
Messages
Services
Plugins
Recent questions tagged nav2_recoveries at Robotics Stack Exchange
|
Package Summary
Tags | No category tags. |
Version | 0.4.7 |
License | Apache-2.0 |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/ros-planning/navigation2.git |
VCS Type | git |
VCS Version | foxy-devel |
Last Updated | 2022-08-31 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Carlos Orduno
- Steve Macenski
Authors
Warning: As with the rest of nav2
, this package is still in development and only works with Turtlebot 3 at the moment. Currently collision avoidance has not been integrated. The user is advised to not use this feature on a physical robot for safety reasons. As of now, this feature should only be used in simulations.
Recoveries
The nav2_recoveries
package implements, as the name suggests, a module for executing simple controlled robot movements such as rotating on its own axis or moving linearly.
The package defines:
- A
Recovery
template which is used as a base class to implement specific recovery. - The
BackUp
,Spin
andStop
recoveries.
Overview
Recovery define simple predictable movements that components can leverage for defining more complex behavior. For example, nav2
uses recoveries for executing recovery behaviors, such as the ones defined on the BtNavigator.
Currently the package provides the following recoveries:
- Spin performs an in-place rotation by a given angle.
- Back Up performs an linear translation by a given distance.
- Stop brings the robot to a stationary state.
Implementation
The module is implemented as a single node containing multiple recoveries and follows the nav2
task hierarchy. Each recovery is defined as a nav2_task
with corresponding command and result message definitions.
The Recovery
base class manages the task server, provides a robot interface and calls the recovery’s update functions.
To gain insight into the package lets go over how to implement and execute a new recoveries.
Defining a recovery
In this section we’ll go over how to define a new recovery and implement the corresponding recovery.
The first step is to provide the task definition inside the nav2_tasks
package. For example, lets define a SomeRecovery
task interface, i.e. the types of messages to use for the command and result, as well as the client and server.
namespace nav2_tasks
{
using SomeRecoveryCommand = geometry_msgs::msg::Point;
using SomeRecoveryResult = std_msgs::msg::Empty;
using SomeRecoveryTaskClient = TaskClient<SomeRecoveryCommand, SomeRecoveryResult>;
using SomeRecoveryTaskServer = TaskServer<SomeRecoveryCommand, SomeRecoveryResult>;
template<>
inline const char * getTaskName<SomeRecoveryCommand, SomeRecoveryResult>()
{
return "SomeRecoveryTask";
}
} // namespace nav2_tasks
For this example we arbitrarily pick geometry_msgs::msg::Point
and std_msgs::msg::Empty
as message types for command and result.
Next we define the class for our new recovery. This class should derive from Recovery
and use the command and result messages defined on the corresponding task.
class SomeRecovery : public Recovery<nav2_tasks::SomeRecoveryCommand, nav2_tasks::SomeRecoveryResult>
On the implementation of SomeRecovery
all we do is override onRun
and onCycleUpdate
.
using nav2_tasks
TaskStatus SomeRecovery::onRun(const SomeRecoveryCommand::SharedPtr command)
{
/* onRun code */
}
TaskStatus SomeRecovery::onCycleUpdate(SomeRecoveryResult & result)
{
/* onCycleUpdate code */
}
The onRun
method is the entry point for the recovery and here we should:
- Catch the command.
- Perform checks before the main execution loop.
- Possibly do some initialization.
- Return a
nav2_tasks::TaskStatus
given the initial checks.
The onCycleUpdate
method is called periodically until it returns FAILED
or SUCCEEDED
, here we should:
- Set the robot in motion.
- Perform some unit of work.
- Check if the robot state, determine if work completed
- Return a
nav2_tasks::TaskStatus
.
Defining the recovery’s client
Recoveries use the nav2_tasks
interface, so we need to define the task client:
nav2_tasks::TaskClient<SomeRecoveryCommand, SomeRecoveryResult> some_recovery_task_client;
To send requests we create the command and sent it over the client:
SomeRecoveryCommand::SharedPtr command;
// Fill command
some_recovery_task_client.sendCommand(command)
(optional) Define the Behavior Tree action node
For using recoveries within a behavior tree such as bt_navigator, then a corresponding action node needs to be defined. Checkout nav2_tasks
for examples on how to implement one.
Plans
- Check for collision before executing a recovery. Issues 379 and 533.
- Remove the stop recovery, move the funcionality to the robot class. Issue 575
- Consider moving
nav2_recoveries
altogether to thenav2_robot
package. Issue 378. - Depending on the feedback from the community we might want to develop this package to include a wide variety of recoveries (arcs) to support all kinds of task, navigation (lattice-based), docking, etc.
- Define smooth transitions between motions. Issue 411.
- Make the existing recoveries configurable for other robots.
Refer to Github for an up-to-date list.
Wiki Tutorials
Package Dependencies
System Dependencies
Dependant Packages
Name | Deps |
---|---|
navigation2 |