is_manipulation()¶
Checks if there is an ongoing manipulation procedure currently.
Reference¶
Arguments¶
None
Return¶
Type |
Description |
|---|---|
|
|
Examples¶
...
self.manip = self.enable_controller('manipulation')
...
await self.manip.pick_object(
detector_model = 'yolov5s_coco',
source = 'head_front',
object_name = 'cup'
)
self.log.info(self.manip.is_grasping())
...
Output
True