trying out angular velocity

This commit is contained in:
Björn Ellensohn 2023-05-09 11:21:53 +02:00
parent be8752c7c6
commit c0c55a8ccc

View File

@ -27,7 +27,7 @@ class TeleopTwistJoy(Node):
if self.limit > self.max_vel:
self.limit = self.max_vel
self.twist.linear.x = self.limit * joy_msg.axes[1]
self.twist.angular.z = -self.limit * joy_msg.axes[0]
self.twist.angular.z = -self.limit * joy_msg.axes[0] * 40
# if joy_msg.buttons[7]: #start
# self.enable = True
# enable_chassis(self)