Skip to content

Commit

Permalink
Add launch folder and file
Browse files Browse the repository at this point in the history
  • Loading branch information
NikkiCloud committed Feb 2, 2025
1 parent c4c25bf commit 8e7ee30
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/rove_radiation/launch/radiation.launch.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
from launch import LaunchDescription
from launch_ros.actions import Node
from ament_index_python.packages import get_package_share_directory
import os

def generate_launch_description():

pkg_rove_radiation = get_package_share_directory('rove_radiation')

return LaunchDescription([
Node(
package='rove_radiation',
executable='radiation_publisher',
name='radiation_publisher',
output='screen'
)
])

0 comments on commit 8e7ee30

Please sign in to comment.