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 | str | Name of the camera to enable |
Return
None
Exceptions
RayaCameraInvalidName
RayaCameraAlreadyEnabled
See the complete list of cameras exceptions.
Usage Example
1. Enabling the 'chest' camera
...
self.cameras = await self.enable_controller('cameras')
...
await self.cameras.enable_color_camera(camera_name='chest')
# Now you can use the 'chest' camera
...
Was this article helpful?