We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91edad4 commit 3fc812eCopy full SHA for 3fc812e
pylabrobot/arms/arm.py
@@ -26,4 +26,12 @@ async def get_speed(self) -> float:
26
"""Get the current speed of the arm's movement."""
27
return await self.backend.get_speed()
28
29
+ async def open_gripper(self):
30
+ """Open the arm's gripper."""
31
+ return await self.backend.open_gripper()
32
+
33
+ async def close_gripper(self):
34
+ """Close the arm's gripper."""
35
+ return await self.backend.close_gripper()
36
37
0 commit comments