j7s-simple/launch/j7s_publisher_launch.py

11 lines
260 B
Python

import launch
import launch_ros.actions
def generate_launch_description():
return launch.LaunchDescription([
launch_ros.actions.Node(
package='j7s-simple',
executable='j7s-publisher',
name='j7s_publisher')
])