Skip to content
This repository has been archived by the owner on Dec 13, 2024. It is now read-only.

Commit

Permalink
Add required parameter in realsense launch file
Browse files Browse the repository at this point in the history
  • Loading branch information
dyackzan committed Sep 27, 2024
1 parent 204888b commit e93e7fc
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion src/picknik_ur_base_config/launch/pro_rs_launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,5 +56,14 @@ def generate_launch_description():
)
return LaunchDescription(
rs_launch.declare_configurable_parameters(rs_launch.configurable_parameters)
+ [OpaqueFunction(function=rs_launch.launch_setup)]
+ [
OpaqueFunction(
function=rs_launch.launch_setup,
kwargs={
"params": rs_launch.set_configurable_parameters(
rs_launch.configurable_parameters
)
},
)
]
)

0 comments on commit e93e7fc

Please sign in to comment.