From 6a6ba2953a97aa7b1ab1883ef9c4445eb890319c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Ellensohn?= Date: Tue, 18 Apr 2023 14:19:21 +0200 Subject: [PATCH] retry with self.limit --- rmp220_teleop/rmp220_teleop.py | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/rmp220_teleop/rmp220_teleop.py b/rmp220_teleop/rmp220_teleop.py index 1908569..0824b7d 100644 --- a/rmp220_teleop/rmp220_teleop.py +++ b/rmp220_teleop/rmp220_teleop.py @@ -14,18 +14,19 @@ class TeleopTwistJoy(Node): self.timer = self.create_timer(0.01, self.timer_callback) self.twist = Twist() self.enable = False + self.limit = 0.5 def joy_callback(self, joy_msg): - # if joy_msg.buttons[4]: #lb - # self.limit -= 0.5 - # if self.limit < 0.2: - # self.limit = 0.2 - # if joy_msg.buttons[5]: #rb - # self.limit += 0.5 - # if self.limit > 3: - # self.limit = 3 - self.twist.linear.x = 0.5 * joy_msg.axes[1] - self.twist.angular.z = 1 * joy_msg.axes[0] + if joy_msg.buttons[4]: #lb + self.limit -= 0.5 + if self.limit < 0.2: + self.limit = 0.2 + if joy_msg.buttons[5]: #rb + self.limit += 0.5 + if self.limit > 3: + self.limit = 3 + self.twist.linear.x = self.limit * joy_msg.axes[1] + self.twist.angular.z = self.limit * joy_msg.axes[0] if joy_msg.buttons[7]: #start self.enable = True enable_chassis(self)