tvoc_float (total concentration of volatile organic compounds)
Last updated on June 23, 2026
Data type: FLOAT(0, 9.999)
Usage method: stores the device state without changing it.
Purpose: shows the current TVOC level in mg/m3 (milligrams per cubic meter). It takes a value from the range of 0-9,999 mg/m3.
Devices with this function
sensor_air — air quality sensor.
Examples of voice commands
— Салют, какая сейчас концентрация летучих органических веществ? (Salute, what is the current concentration of volatile organic compounds?)
Function description for a device model
The function must be added to the model descriptions of all devices that support it.
"features": [
"tvoc_float",
// ...
]
Function state description example
The example describes a sensor reporting that the TVOC level is 0,205 mg/m3.
{
"states": [
{
"key": "tvoc_float",
"value": {
"type": "FLOAT",
"float_value": "0.205"
}
}
]
}