Hand API
User-facing API for commanding a dexterous hand.
Source code in dexterous_hand/hand.py
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | |
mock()
classmethod
Create a mock hand suitable for examples and tests.
Source code in dexterous_hand/hand.py
26 27 28 29 30 31 | |
move_joints(positions_rad)
Move joints to target positions.
Source code in dexterous_hand/hand.py
37 38 39 | |
move_to_grasp(grasp_name)
Move to a named grasp pose.
Source code in dexterous_hand/hand.py
41 42 43 44 | |
open()
Open the hand to a neutral pose.
Source code in dexterous_hand/hand.py
46 47 48 49 | |
read_joints()
Read current joint states.
Source code in dexterous_hand/hand.py
33 34 35 | |
stop()
Stop motion immediately.
Source code in dexterous_hand/hand.py
51 52 53 | |