viam.components.audio_out.client
Classes
gRPC client for AudioOut component. |
Module Contents
- class viam.components.audio_out.client.AudioOutClient(name: str, channel: grpclib.client.Channel)[source]
Bases:
viam.components.audio_out.audio_out.AudioOut,viam.resource.rpc_client_base.ReconfigurableResourceRPCClientBasegRPC client for AudioOut component.
- channel
- client
- async play(data: bytes, info: viam.components.audio_out.audio_out.AudioInfo | None = None, *, extra: Dict[str, Any] | None = None, timeout: float | None = None, **kwargs) None[source]
Play the given audio data.
- ::
my_audio_out = AudioOut.from_robot(robot=machine, name=”my_audio_out”)
# With audio info audio_info = AudioInfo(codec=AudioCodec.PCM16, sample_rate_hz=44100, num_channels=2) await my_audio_out.play(audio_data, audio_info)
# Without audio info (when codec encodes information within audio_data) await my_audio_out.play(audio_data)
- Parameters:
data – audio bytes to play
info – (optional) information about the audio data such as codec, sample rate, and channel count
- async get_properties(*, extra: Dict[str, Any] | None = None, timeout: float | None = None, **kwargs) viam.components.audio_out.audio_out.AudioOut.Properties[source]
Get the audio output device’s properties.
- ::
my_audio_out = AudioOut.from_robot(robot=machine, name=”my_audio_out”) properties = await my_audio_out.get_properties()
- Returns:
The properties of the audio output device
- Return type:
- async do_command(command: Mapping[str, viam.utils.ValueTypes], *, timeout: float | None = None, **kwargs) Mapping[str, viam.utils.ValueTypes][source]
Send/Receive arbitrary commands to the Resource
command = {"cmd": "test", "data1": 500} result = await component.do_command(command)
- Parameters:
command (Mapping[str, ValueTypes]) – The command to execute
- Raises:
NotImplementedError – Raised if the Resource does not support arbitrary commands
- Returns:
Result of the executed command
- Return type:
Mapping[str, ValueTypes]
- async get_geometries(*, extra: Dict[str, Any] | None = None, timeout: float | None = None, **kwargs) List[viam.proto.common.Geometry][source]
Get all geometries associated with the component, in their current configuration, in the frame of the component.
geometries = await component.get_geometries() if geometries: # Get the center of the first geometry print(f"Pose of the first geometry's centerpoint: {geometries[0].center}")
- Returns:
The geometries associated with the Component.
- Return type:
List[Geometry]
- classmethod from_robot(robot: viam.robot.client.RobotClient, name: str) typing_extensions.Self
Get the component named
namefrom the provided robot.- Parameters:
robot (RobotClient) – The robot
name (str) – The name of the component
- Returns:
The component, if it exists on the robot
- Return type:
Self
- classmethod get_resource_name(name: str) viam.proto.common.ResourceName
Get the ResourceName for this Resource with the given name
# Can be used with any resource, using an arm as an example my_arm_name = Arm.get_resource_name("my_arm")
- Parameters:
name (str) – The name of the Resource
- Returns:
The ResourceName of this Resource
- Return type:
- get_operation(kwargs: Mapping[str, Any]) viam.operations.Operation
Get the
Operationassociated with the currently running function.When writing custom resources, you should get the
Operationby calling this function and check to see if it’s cancelled. If theOperationis cancelled, then you can perform any necessary (terminating long running tasks, cleaning up connections, etc. ).- Parameters:
kwargs (Mapping[str, Any]) – The kwargs object containing the operation
- Returns:
The operation associated with this function
- Return type:
- async close()
Safely shut down the resource and prevent further use.
Close must be idempotent. Later configuration may allow a resource to be “open” again. If a resource does not want or need a close function, it is assumed that the resource does not need to return errors when future non-Close methods are called.
await component.close()