Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add launch file with port arg #84

Merged
merged 2 commits into from
Sep 5, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Next Next commit
Add launch file with port arg
  • Loading branch information
Joey Curtis committed Aug 24, 2021
commit fbfae012f4e09926b3147f87bfb7ae97b8c08d90
5 changes: 5 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,8 @@ catkin_install_python(PROGRAMS
nodes/rosboard_node
DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
)

install(DIRECTORY
launch
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}
)
8 changes: 8 additions & 0 deletions launch/rosboard.launch
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0"?>

<launch>
<arg name="port" default="8888"/>
<node name="rosboard" pkg="rosboard" type="rosboard_node" output="screen">
<param name="port" value="$(arg port)"/>
</node>
</launch>