Skip to content

Commit

Permalink
feat: Decrease default profile check frequency to 10s
Browse files Browse the repository at this point in the history
  • Loading branch information
rgov committed Sep 14, 2024
1 parent 06bcef8 commit ffad614
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/phyto_arm/src/arm_esp.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def get_next_task(self, last_task):
return Task("profiler_peak", wait_seconds(esp_update_freq), peak_depth)

# By default hold and wait a second
return Task('default_position_wait', wait_seconds(5), rospy.get_param('tasks/default_depth'))
return Task('default_position_wait', wait_seconds(10), rospy.get_param('tasks/default_depth'))

# Global reference to arm state
arm = None
Expand Down

0 comments on commit ffad614

Please sign in to comment.