get_groups_list()
  • 1 Minute to read

get_groups_list()


Article summary

Get list of available groups (set of arms) on the current robotic device.

Reference

Arguments

None

Return

TypeDescription
ListThe 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?