To contribute to this page, edit the following file
Keen Home SV01
Model | SV01 |
Vendor | Keen Home |
Description | Smart vent |
Supports | open, close, position, temperature, pressure, battery |
Picture | ![]() |
Notes
Device type specific configuration
How to use device type specific configuration
temperature_precision
: Controls the precision oftemperature
values, e.g.0
,1
or2
; default2
.-
temperature_calibration
: Allows to manually calibrate temperature values, e.g.1
would add 1 degree to the temperature reported by the device; default0
. pressure_precision
: Controls the precision ofpressure
values, e.g.0
or1
; default1
.pressure_calibration
: Allows to manually calibrate pressure values, e.g.1
would add 1 to the pressure reported by the device; default0
.
Manual Home Assistant configuration
Although Home Assistant integration through MQTT discovery is preferred, manual integration is possbile with the following configuration:
cover:
- platform: "mqtt"
state_topic: false
availability_topic: "zigbee2mqtt/bridge/state"
command_topic: "zigbee2mqtt/<FRIENDLY_NAME>/set"
position_topic: true
set_position_topic: true
set_position_template: "{ \"position\": {{ position }} }"
value_template: "{{ value_json.position }}"
sensor:
- platform: "mqtt"
state_topic: "zigbee2mqtt/<FRIENDLY_NAME>"
availability_topic: "zigbee2mqtt/bridge/state"
unit_of_measurement: "°C"
device_class: "temperature"
value_template: "{{ value_json.temperature }}"
sensor:
- platform: "mqtt"
state_topic: "zigbee2mqtt/<FRIENDLY_NAME>"
availability_topic: "zigbee2mqtt/bridge/state"
unit_of_measurement: "hPa"
device_class: "pressure"
value_template: "{{ value_json.pressure }}"
sensor:
- platform: "mqtt"
state_topic: "zigbee2mqtt/<FRIENDLY_NAME>"
availability_topic: "zigbee2mqtt/bridge/state"
unit_of_measurement: "%"
device_class: "battery"
value_template: "{{ value_json.battery }}"
sensor:
- platform: "mqtt"
state_topic: "zigbee2mqtt/<FRIENDLY_NAME>"
availability_topic: "zigbee2mqtt/bridge/state"
unit_of_measurement: "-"
value_template: "{{ value_json.linkquality }}"