Git Product home page Git Product logo

knut0815 / aws-deepracer-usb-monitor-pkg Goto Github PK

View Code? Open in Web Editor NEW

This project forked from aws-deepracer/aws-deepracer-usb-monitor-pkg

0.0 0.0 0.0 28 KB

The DeepRacer USB Monitor ROS package creates the usb_monitor_node which monitors the connection/disconnection of the USB drive and provides functionality to watch for specific files/folders in it.

License: Apache License 2.0

Python 100.00%

aws-deepracer-usb-monitor-pkg's Introduction

DeepRacer USB Monitor Package

Overview

The DeepRacer USB Monitor ROS package creates the usb_monitor_node which is part of the core AWS DeepRacer application and will be launched from the deepracer_launcher. More details about the application and the components can be found here.

This node monitors the connection/disconnection of the USB drive and provides functionality to watch for specific files/folders in it. It provides services and functions to subscribe to be notified if a particular file/folder is found in USB, publisher to broadcast details of the found files/folders and mount point management functions.

License

The source code is released under Apache 2.0 (https://aws.amazon.com/apache-2-0/).

Installation

Prerequisites

The DeepRacer device comes with all the pre-requisite packages and libraries installed to run the usb_monitor_pkg. More details about pre installed set of packages and libraries on the DeepRacer, and installing required build systems can be found in the Getting Started section of the AWS DeepRacer Opensource page.

The usb_monitor_pkg specifically depends on the following ROS2 packages as build and execute dependencies:

  • deepracer_interfaces_pkg - This packages contains the custom message and service type definitions used across the AWS DeepRacer core application.

Downloading and Building

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

  1. Switch to 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_ws
     cd ~/deepracer_ws
    
  4. Clone the usb_monitor_pkg on the DeepRacer device:

     git clone https://github.com/aws-deepracer/aws-deepracer-usb-monitor-pkg.git
    
  5. Fetch unreleased dependencies:

     cd ~/deepracer_ws/aws-deepracer-usb-monitor-pkg
     rosws update
    
  6. Resolve the usb_monitor_pkg dependencies:

     cd ~/deepracer_ws/aws-deepracer-usb-monitor-pkg && rosdep install -i --from-path . --rosdistro foxy -y
    
  7. Build the usb_monitor_pkg and deepracer_interfaces_pkg:

     cd ~/deepracer_ws/aws-deepracer-usb-monitor-pkg && colcon build --packages-select usb_monitor_pkg deepracer_interfaces_pkg
    

Usage

The usb_monitor_node provide basic system level functionality for the AWS DeepRacer application to work. Although the node is built to work with the AWS DeepRacer application, it can be run independently for development/testing/debugging purposes.

Run the node

To launch the built usb_monitor_node as root user on the DeepRacer device open up another terminal on the DeepRacer device and run the following commands as root user:

  1. Switch to 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. Source the setup script for the installed packages:

     source ~/deepracer_ws/aws-deepracer-usb-monitor-pkg/install/setup.bash
    
  4. Launch the usb_monitor_node using the launch script:

     ros2 launch usb_monitor_pkg usb_monitor_pkg_launch.py
    

Launch Files

The usb_monitor_pkg_launch.py is also included in this package that gives an example of how to launch the nodes independently from the core application.

from launch import LaunchDescription
from launch_ros.actions import Node

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

Node Details

usb_monitor_node

Published Topics

Topic Name Message Type Description
/usb_monitor_pkg/usb_file_system_notification USBFileSystemNotificationMsg Publisher to broadcast the notification messages when any of the files/folders that are in the watchlist are found in the USB drive.

Services

Service Name Service Type Description
usb_file_system_subscribe USBFileSystemSubscribeSrv Service that is called to add files/folders to the watchlist so that when they are found in the USB drive, a file system notification will be triggered.
usb_mount_point_manager USBMountPointManagerSrv Service exposing the functionality to safely increment/decrement the reference counter for the mount points.

Resources

aws-deepracer-usb-monitor-pkg's People

Contributors

amazon-auto avatar pratik-nichat avatar siddalingesha-ds avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.