No version for distro humble. Known supported distros are highlighted in the buttons above.
No version for distro jazzy. Known supported distros are highlighted in the buttons above.
No version for distro rolling. Known supported distros are highlighted in the buttons above.

Package Summary

Tags No category tags.
Version 0.0.1
License Apache 2.0
Build type AMENT_PYTHON
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/aws-deepracer/aws-deepracer.git
VCS Type git
VCS Version main
Last Updated 2022-06-06
Dev Status UNMAINTAINED
CI status No Continuous Integration
Released UNRELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

This package enables the services for nodes required for enabling ROS Navigation on DeepRacer device.

Additional Links

No additional links.

Maintainers

  • AWS DeepRacer

Authors

No additional authors.

AWS DeepRacer Enable DeepRacer Nav Package

Overview

The Enable DeepRacer Nav ROS package creates the enable_deepracer_nav_node which enables the camera and servo GPIO on the AWS DeepRacer. For detailed information, see Introduction to the ROS Navigation stack using AWS DeepRacer Evo.

License

The source code is released under Apache 2.0.

Installation

Prerequisites

The enable_deepracer_nav_pkg specifically depends on the following ROS2 packages as build and run dependencies:

  1. deepracer_interfaces_pkg: This package contains the custom message and service type definitions used across the AWS DeepRacer core application, modified to support the ROS Nav2 integration packages.

Downloading and building

Open up a terminal on the AWS DeepRacer device and run the following commands as the root user.

  1. Switch to the root user before you source the ROS2 installation:

     sudo su
    
  2. Source the ROS2 Foxy setup bash script:

     source /opt/ros/foxy/setup.bash 
    
  3. Create a workspace directory for the package:

     mkdir -p ~/deepracer_nav2_ws
     cd ~/deepracer_nav2_ws/
    
  4. Clone the entire AWS DeepRacer project on the DeepRacer device.

     git clone https://github.com/aws-deepracer/aws-deepracer.git
     cd ~/deepracer_nav2_ws/aws-deepracer/
    
  5. Fetch the unreleased dependencies:

     cd ~/deepracer_nav2_ws/aws-deepracer/deepracer_nodes
     rosws update
    
  6. Resolve the dependencies:

     cd ~/deepracer_nav2_ws/aws-deepracer/deepracer_nodes && rosdep install -i --from-path . --rosdistro foxy -y
    
  7. Build the enable_deepracer_nav_pkg and deepracer_interfaces_pkg:

     cd ~/deepracer_nav2_ws/aws-deepracer/ && colcon build --packages-select deepracer_interfaces_pkg enable_deepracer_nav_pkg
    

Using the enable_deepracer_nav_mode

Although the enable_deepracer_nav_node is built to work with the ROS Nav2 integration packages, you can run it independently for development, testing, and debugging purposes.

Running the node

To launch the built enable_deepracer_nav_node as the root user on the AWS DeepRacer device, open another terminal on the AWS DeepRacer device and run the following commands as the root user.

  1. Switch to the root user before you source the ROS2 installation:

     sudo su
    
  2. DeepRacer ROS Nav2 workspace:

     cd ~/deepracer_nav2_ws/aws-deepracer/
    
  3. Source the ROS2 Foxy setup bash script:

     source /opt/ros/foxy/setup.bash 
    
  4. Source the setup script for the installed packages:

     source ~/deepracer_nav2_ws/aws-deepracer/install/setup.bash
    
  5. Launch the enable_deepracer_nav_node using the launch script:

     ros2 launch enable_deepracer_nav_pkg enable_deepracer_nav_pkg_launch.py
    

Launch files

The enable_deepracer_nav_pkg_launch.py launch file included in this package gives an example of how to launch the enable_deepracer_nav_node.

    from launch import LaunchDescription
    from launch_ros.actions import Node

    def generate_launch_description():
        return LaunchDescription([
            Node(
                package='enable_deepracer_nav_pkg',
                namespace='enable_deepracer_nav_pkg',
                executable='enable_deepracer_nav_node',
                name='enable_deepracer_nav_node'
            )
    ])

Node details

enable_deepracer_nav

Service Clients

Service name Service type Description
/camera_pkg/media_state VideoStateSrv Service that is called to activate the camera node and start publishing the images to the video_mjpeg and display_mjpeg topics.
/servo_pkg/servo_gpio ServoGPIOSrv A service that is called enable or disable the servo GPIO pin.

Resources

CHANGELOG
No CHANGELOG found.

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged enable_deepracer_nav_pkg at Robotics Stack Exchange

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.
No version for distro eloquent. Known supported distros are highlighted in the buttons above.
No version for distro dashing. Known supported distros are highlighted in the buttons above.
No version for distro galactic. Known supported distros are highlighted in the buttons above.
No version for distro foxy. 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 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.