get_groups_list()
- 1 Minute to read
get_groups_list()
- 1 Minute to read
Article summary
Did you find this summary helpful?
Thank you for your feedback
Get list of available groups (set of arms)
on the current robotic device.
Reference
Arguments
None
Return
Type | Description |
---|---|
List | The names of available groups. |
Exceptions
None
See the complete list of arms exceptions
Usage example
...
self.arms = self.enable_controller('arms')
...
arms_list = self.arms.get_groups_list()
self.log.info(arms_list)
...
Output
['both']
Was this article helpful?