without realsense
This commit is contained in:
21
src/dcaitirobot/launch/remote_control_launch.py
Normal file
21
src/dcaitirobot/launch/remote_control_launch.py
Normal file
@ -0,0 +1,21 @@
|
||||
from launch import LaunchDescription
|
||||
from launch_ros.actions import Node
|
||||
|
||||
def generate_launch_description():
|
||||
return LaunchDescription([
|
||||
Node(
|
||||
package='dcaitirobot',
|
||||
executable='joy',
|
||||
name='joystick',
|
||||
),
|
||||
Node(
|
||||
package='dcaitirobot',
|
||||
executable='twistcalc',
|
||||
name='twistcalc',
|
||||
),
|
||||
Node(
|
||||
package='dcaitirobot',
|
||||
executable='serial_comms',
|
||||
name='serial',
|
||||
)
|
||||
])
|
||||
Reference in New Issue
Block a user