testBuzzerVolume

abstract suspend fun testBuzzerVolume(deviceId: String, volume: Int): CommandResponse

Tests the volume without storing it (non-persistent).

Return

A CommandResponse indicating the result.

Parameters

deviceId

The identifier of the target device.

volume

The volume value to be set (range: 0-100).


abstract fun testBuzzerVolume(deviceId: String, volume: Int, callback: (Result<CommandResponse>) -> Unit)

Callback-based version of testBuzzerVolume for Java interoperability.

Parameters

deviceId

The identifier of the target device.

volume

The volume value to be set (range: 0-100).

callback

Callback to receive the CommandResponse.