No version for distro humble. Known supported distros are highlighted in the buttons above.
No version for distro iron. Known supported distros are highlighted in the buttons above.
No version for distro rolling. Known supported distros are highlighted in the buttons above.
No version for distro noetic. Known supported distros are highlighted in the buttons above.
No version for distro ardent. Known supported distros are highlighted in the buttons above.
No version for distro bouncy. Known supported distros are highlighted in the buttons above.
No version for distro crystal. Known supported distros are highlighted in the buttons above.

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

TODO

Additional Links

No additional links.

Maintainers

  • Carlos Orduno
  • Steve Macenski

Authors

No additional 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 and Stop 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 the nav2_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.

CHANGELOG

Wiki Tutorials

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

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

TODO

Additional Links

No additional links.

Maintainers

  • Carlos Orduno
  • Steve Macenski

Authors

No additional 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 and Stop 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 the nav2_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.

CHANGELOG

Wiki Tutorials

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

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

TODO

Additional Links

No additional links.

Maintainers

  • Carlos Orduno
  • Steve Macenski

Authors

No additional 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 and Stop 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 the nav2_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.

CHANGELOG

Wiki Tutorials

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

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

TODO

Additional Links

No additional links.

Maintainers

  • Carlos Orduno
  • Steve Macenski

Authors

No additional 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 and Stop 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 the nav2_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.

CHANGELOG

Wiki Tutorials

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

Recent questions tagged nav2_recoveries at Robotics Stack Exchange

No version for distro lunar. Known supported distros are highlighted in the buttons above.
No version for distro jade. Known supported distros are highlighted in the buttons above.
No version for distro indigo. Known supported distros are highlighted in the buttons above.
No version for distro hydro. Known supported distros are highlighted in the buttons above.
No version for distro kinetic. Known supported distros are highlighted in the buttons above.
No version for distro melodic. Known supported distros are highlighted in the buttons above.