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.0
License Apache 2.0
Build type AMENT_PYTHON
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/open-rmf/roscon_workshop.git
VCS Type git
VCS Version main
Last Updated 2023-02-18
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

Example door adapter to be used with rmf_demos simulations

Additional Links

No additional links.

Maintainers

  • Luca Della Vedova

Authors

No additional authors.

roscon_door_adapter

Door adapter for the roscon workshop

API Endpoints

This door adapter integration relies on a door manager and a door adapter:

  • The door manager comprises of specific endpoints that help relay commands to the simulated doors. It communicates with the doors over internal ROS 2 messages, while interfacing with the adapter via an API chosen by the user. For this demo door adapter implementation, we are using REST API with FastAPI framework.
  • The door adapter receives commands from RMF and interfaces with the door manager to receive door state information, as well as query for available doors and send commands to open or close.

To interact with endpoints, launch the demo and then visit http://127.0.0.1:5002/docs in your browser.

1. Get Door Names

Get a list of the door names being managed by this adapter. This endpoint does not require a Request Body.

Request URL: http://127.0.0.1:5002/open-rmf/demo-door/door_names

Response Body:
{
  "data": {
    "door_names": [
      "main_door_left",
      "green_room_door",
      "main_door_right"
    ]
  },
  "success": true,
  "msg": ""
}

2. Get Door State

Gets the state of the door with the specified name. This endpoint only requires a door_name query parameter.

Request URL: http://127.0.0.1:5002/open-rmf/demo-door/door_state?door_name=door

Response Body:
{
  "data": {
    "current_mode": 0
  },
  "success": true,
  "msg": ""
}

3. Send Door Request

The door_request endpoint allows the door adapter to send requests to a specified door. This endpoint requires a Request Body and a door_name query parameter.

Request URL: http://127.0.0.1:5002/open-rmf/demo-door/door_request?door_name=door

Request Body:
{
  "requested_mode": 0
}

Response Body:
{
  "data": {},
  "success": true,
  "msg": ""
}

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.

Package Dependencies

System Dependencies

Dependant Packages

Name Deps
roscon_demos

Launch files

  • launch/door_adapter.launch.xml
      • use_sim_time [default: true]
      • manager_address [default: localhost]
      • manager_port [default: 5002]
      • output [default: screen]

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged roscon_door_adapter 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.