are_checkings_in_progress
  • 1 Minute to read

are_checkings_in_progress


Article summary

Checks if code is in the middle of checking an arm.

Reference

Arguments

None

Return

TypeDescription
BoolTrue if any arm/pose is being checked.

Exceptions

  • RayaArmsException

See the complete list of arms exceptions

Usage Example

...
self.arms = self.enable_controller('arms')
...
checking = self.arms.are_checkings_in_progress()
self.log.info(checking)
...

Output:

False

Was this article helpful?