![]() |
roscon_door_adapter package from roscon_workshop reporoscon_demos roscon_door_adapter roscon_fleet_adapter roscon_gz_classic roscon_lift_adapter roscon_maps |
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
Additional Links
Maintainers
- Luca Della Vedova
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": ""
}
Wiki Tutorials
Package Dependencies
Deps | Name |
---|---|
rmf_door_msgs | |
ament_copyright | |
ament_flake8 | |
ament_pep257 |
System Dependencies
Name |
---|
python3-pytest |
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]