Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

changing QoS to default (#18) #19

Merged
merged 1 commit into from Feb 25, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions teleop_twist_keyboard.py
Expand Up @@ -39,7 +39,7 @@
from geometry_msgs.msg import Twist

import rclpy
from rclpy.qos import qos_profile_sensor_data
from rclpy.qos import qos_profile_default

msg = """
This node takes keypresses from the keyboard and publishes them
Expand Down Expand Up @@ -118,7 +118,7 @@ def main():

node = rclpy.create_node('teleop_twist_keyboard')
pub = node.create_publisher(
Twist, 'cmd_vel', qos_profile=qos_profile_sensor_data)
Twist, 'cmd_vel', qos_profile=qos_profile_default)

speed = 0.5
turn = 1.0
Expand Down