incoming_call
Last updated on November 06, 2025
Data type: BOOL.
Usage method: stores the device state without changing it.
Purpose: reports whether incoming call presents:
true— intercom is in the incoming call state.false— intercom is not in the incoming call state.
Devices with this function
intercom — intercom.
Examples of voice commands
No voice commands are available.
Function description for a device model
The function must be added to the model descriptions of all devices that support it.
"features": [
"incoming_call",
// ...
]
Function state description example
In the example, there is incoming intercom call.
{
"states": [
{
"key": "incoming_call",
"value": {
"type": "BOOL",
"bool_value": true
}
}
]
}