Browse Source

increased pen down force to avoid light lines

pull/5/head
Charlie Kemp 3 years ago
committed by hello-binit
parent
commit
7d38fa25ee
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      stretch_demos/nodes/hello_world

+ 1
- 1
stretch_demos/nodes/hello_world View File

@ -71,7 +71,7 @@ class HelloWorldNode(hm.HelloNode):
wrist_position, wrist_velocity, wrist_effort = hm.get_wrist_state(self.joint_states)
extension_m = wrist_position + max_reach_m
extension_m = min(extension_m, max_extension_m)
extension_contact_effort = 42.0 #42.0 #40.0 from funmap
extension_contact_effort = 45.0 #42.0 #40.0 from funmap
pose = {'wrist_extension': (extension_m, extension_contact_effort)}
self.move_to_pose(pose, custom_contact_thresholds=True)

Loading…
Cancel
Save