mute
Last updated on November 5, 2024
Data type: BOOL.
Usage method: does not store the device state but can change it.
Purpose: controls the mute mode:
true
— the mute mode is enabled.false
— the mute mode is off.
Devices with this function
tv — TV.
Examples of voice commands
— Салют, включи беззвучный режим на ТВ (Salute, mute the TV)
— Салют, выключи беззвучный режим на телевизоре (Salute, unmute the TV)
Function description for a device model
The function must be added to the model descriptions of all devices that support it.
"features": [
"mute",
// ...
]
Function state description example
In the example, the TV is muted.
{
"states": [
{
"key": "mute",
"value": {
"type": "BOOL",
"bool_value": true
}
}
]
}