enable_color_camera()
  • 1 Minute to read

enable_color_camera()


Article Summary

Enable the specified camera.

Reference

Arguments

ArgumentType
camera_namestringName of the camera to enable, see the list of cameras

Return

None

Exceptions

ExceptionCondition
RayaInvalidCameraNameInvalid camera name.

See the Full List of Exceptions.

Examples

1. Enabling the 'chest' camera

...
self.cameras = await self.enable_controller('cameras')
...
cameras_list = self.cameras.enable_color_camera('chest')
# Now you can use the 'chest' camera
...

Was this article helpful?