Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions docs/demos/digital-twin-demos/autoware-core-awsim/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,13 @@ If you have not yet installed Autoware, please refer to the [Installation](../..

```bash
source $HOME/autoware_launch_workspace/install/setup.bash
ros2 topic pub /system/operation_mode/state autoware_adapi_v1_msgs/msg/OperationModeState "{mode: 2, is_autoware_control_enabled: true, is_autonomous_mode_available: true}" --once
ros2 topic pub /control/command/gear_cmd autoware_vehicle_msgs/msg/GearCommand "command: 2" --once

ros2 topic pub /system/operation_mode/state autoware_adapi_v1_msgs/msg/OperationModeState \
"{mode: 2, is_autoware_control_enabled: true, is_autonomous_mode_available: true}" \
--once --qos-durability transient_local

ros2 topic pub /control/command/gear_cmd autoware_vehicle_msgs/msg/GearCommand "command: 2" \
--once --qos-durability transient_local
```

## Launch Autoware for Docker installation
Expand Down
Loading