-
Notifications
You must be signed in to change notification settings - Fork 195
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Borong Yuan <[email protected]>
- Loading branch information
1 parent
bf6ed90
commit d1bdb8d
Showing
2 changed files
with
19 additions
and
0 deletions.
There are no files selected for viewing
12 changes: 12 additions & 0 deletions
12
doc/examples/realtime_servo/launch/servo_spacenav_input.launch.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
from launch import LaunchDescription | ||
from launch_ros.actions import Node | ||
|
||
|
||
def generate_launch_description(): | ||
return LaunchDescription([ | ||
Node(package='spacenav', executable='spacenav_node', | ||
name='spacenav', namespace='', output='screen', | ||
parameters=[{'zero_when_static': True, | ||
'use_twist_stamped': True}], | ||
remappings=[('spacenav/twist', 'servo_node/delta_twist_cmds')]), | ||
]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters