forked from autowarefoundation/autoware_adapi_msgs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(autoware_adapi_v1_msgs): add door command (autowarefoundation#40)
* door command Signed-off-by: Takagi, Isamu <[email protected]> * remove unused constant Signed-off-by: Takagi, Isamu <[email protected]> * modify command Signed-off-by: Takagi, Isamu <[email protected]> --------- Signed-off-by: Takagi, Isamu <[email protected]>
- Loading branch information
1 parent
90478d5
commit fcdd3d0
Showing
5 changed files
with
11 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
uint8 OPEN = 1 | ||
uint8 CLOSE = 2 | ||
|
||
uint32 index | ||
uint8 command |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
# constants for door status | ||
uint8 UNKNOWN = 0 | ||
uint8 NOT_AVAILABLE = 1 | ||
uint8 OPENED = 2 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
--- | ||
autoware_adapi_v1_msgs/ResponseStatus status | ||
autoware_adapi_v1_msgs/DoorLayout doors | ||
autoware_adapi_v1_msgs/DoorLayout[] doors |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
autoware_adapi_v1_msgs/DoorCommand[] doors | ||
--- | ||
autoware_adapi_v1_msgs/ResponseStatus status |