Skip to content

Commit

Permalink
camera,imshow,joystickのlaunchファイルの修正
Browse files Browse the repository at this point in the history
  • Loading branch information
23-yoshikawa committed Jun 24, 2024
1 parent 94de525 commit d265e84
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/imshow/launch/imshow_launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ def generate_launch_description():
package="imshow",
executable="imshow",
namespace="app",
remappings=[("/app/camera/image", "/packet/camera/image")]
remappings=[("/app/camera_image", "/packet/camera_image")]
)
])
2 changes: 1 addition & 1 deletion device/camera_reader/launch/camera_reader_launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ def generate_launch_description():
package="camera_reader",
executable="camera_reader",
namespace="device",
remappings=[("/device/camera/image", "/packet/camera/image")])
remappings=[("/device/camera_image", "/packet/camera_image")])
])
6 changes: 5 additions & 1 deletion device/joystick/launch/joystick_launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,9 @@

def generate_launch_description():
return LaunchDescription([
Node(package="joystick", executable="joystick", namespace="device")
Node(package="joystick",
executable="joystick",
namespace="device",
remappings=[("/device/joystick", "/packet/joystick")]
)
])

0 comments on commit d265e84

Please sign in to comment.