Skip to content

Commit

Permalink
Use lower speeds (fix issue #36)
Browse files Browse the repository at this point in the history
  • Loading branch information
RBinsonB committed Sep 10, 2024
1 parent 1c7f5ad commit a563ec7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lunar_pole_exploration_rover/nodes/run_demo
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit a563ec7

Please sign in to comment.