From a563ec74bc03d7bcf325203a609325075f39fb95 Mon Sep 17 00:00:00 2001 From: RobinB Date: Wed, 11 Sep 2024 03:54:30 +1200 Subject: [PATCH] Use lower speeds (fix issue #36) --- lunar_pole_exploration_rover/nodes/run_demo | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lunar_pole_exploration_rover/nodes/run_demo b/lunar_pole_exploration_rover/nodes/run_demo index 097ea14..e63b0f9 100644 --- a/lunar_pole_exploration_rover/nodes/run_demo +++ b/lunar_pole_exploration_rover/nodes/run_demo @@ -68,7 +68,7 @@ class RunDemo(Node): def move_forward_callback(self, request, response): self.get_logger().info("Moving forward") action = Twist() - action.linear.x = 2.0 + action.linear.x = 1.0 self.curr_action = action self.stopped = False return response @@ -121,7 +121,7 @@ class RunDemo(Node): def rotate_on_place_callback(self, request, response): self.get_logger().info("Rotating on place") action = Twist() - action.angular.z = 0.8 + action.angular.z = 0.4 self.curr_action = action self.stopped = False return response @@ -131,7 +131,7 @@ class RunDemo(Node): action = Twist() action.linear.x = 0.1 action.linear.y = 0.8 - action.angular.z = 0.8 + action.angular.z = 0.4 self.curr_action = action self.stopped = False return response