diff --git a/src/config/launchOptions.ts b/src/config/launchOptions.ts index dd9944b..cb693d3 100644 --- a/src/config/launchOptions.ts +++ b/src/config/launchOptions.ts @@ -11,17 +11,21 @@ export const launchOptions: Record = { image: image, command: ["ros2", "launch", "bringup", "core.launch.py"], }, - drive: { + videoStreaming: { image: image, - command: ["ros2", "launch", "bringup", "drive.launch.py"], + command: ["ros2", "launch", "video_streaming", "video_streaming.launch.py"], }, - videoStreaming: { + driveAndArm: { + image: image, + command: ["ros2", "launch", "bringup", "control.launch.py"], + }, + drive: { image: image, - command: ["ros2", "launch", "bringup", "video_streaming.launch.py"], + command: ["ros2", "launch", "bringup", "control.launch.py", "use_arm:=false"], }, arm: { image: image, - command: ["ros2", "launch", "bringup", "arm.launch.py"], + command: ["ros2", "launch", "bringup", "control.launch.py", "use_drive:=false"], }, joy: { image: image, @@ -35,4 +39,8 @@ export const launchOptions: Record = { image: image, command: ["ros2", "launch", "navigation", "nav2.launch.py"], }, + gps: { + image: image, + command: ["ros2", "launch", "gps", "rover.launch.py"], + }, };