enable_color_camera()
- 1 Minute to read
enable_color_camera()
- 1 Minute to read
Article summary
Did you find this summary helpful?
Thank you for your feedback
Enable the specified camera.
Reference
Arguments
Argument | Type | |
---|---|---|
camera_name | string | Name of the camera to enable, see the list of cameras |
Return
None
Exceptions
Exception | Condition |
---|---|
RayaInvalidCameraName | Invalid 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?