quadruped_ros2_control/commands/unitree_joystick_input/launch/joystick.launch.py

18 lines
427 B
Python
Raw Normal View History

2025-03-30 11:04:48 +08:00
from launch import LaunchDescription
from launch_ros.actions import Node
def generate_launch_description():
return LaunchDescription([
Node(
package='unitree_joystick_input',
executable='joystick_input',
name='joystick_input_node',
parameters=[
{
'network_interface': 'enp46s0',
}
],
)
])