sensor_sensitive
Last updated on June 17, 2024
Data type: ENUM.
Usage method: stores the device state without changing it.
Purpose: sensor sensitivity. It is usually set by turning a switch on the sensor. It may take the following values:
low
– low sensitivity.medium
– medium sensitivity.high
– high sensitivity.
When describing the device model, the list of available operation modes of a function can be shortened.
Devices with this function
- sensor_door – opening sensors.
- sensor_gas — gas sensor.
- sensor_pir – motion sensors.
- sensor_temp – temperature and humidity sensors.
Examples of voice commands
The user cannot manage the function; no voice commands provided for it.
Function description for a device model
The function must be added to the model descriptions of all devices that support it.
"features": [
"sensor_sensitive",
// ...
]
Function state description example
The example describes a sensor functioning in the medium sensitivity mode.
{
"states": [
{
"key": "sensor_sensitive",
"value": {
"type": "ENUM",
"enum_value": "medium"
}
}
]
}