get_arms_list()
  • 1 Minute to read

get_arms_list()


Article summary

Get list of available arms on the current robotic device.

Reference

Arguments

None

Return

TypeDescription
Listthe names of available arms.

Exceptions

None

See the complete list of arms exceptions

Usage example

...
self.arms = self.enable_controller('arms')
...
arms_list = self.arms.get_arms_list()
self.log.info(arms_list)
...

Output :

['left_arm', 'right_arm']

Was this article helpful?