Show multiple climate preset and hvac mode on entity rows in Home Assistant's Lovelace UI
Manually add climate-mode-entity-row.js
to your <config>/www/
folder and add the following to your ui-lovelace.yaml
file:
resources:
- url: /local/climate-mode-entity-row.js
type: module
OR install using HACS and add this instead:
resources:
- url: /community_plugin/lovelace-climate-mode-entity-row/climate-mode-entity-row.js
type: module
Name | Type | Required | Description |
---|---|---|---|
type | string | Yes | custom:climate-mode-entity-row |
entity | string | Yes | domain.my_entity_id |
name | string | No | Override entity friendly_name |
icon | string | No | Override entity icon |
modes | object | Yes | Modes (see below) |
Name | Type | Required | Description |
---|---|---|---|
icon | string | No | A icon for the mode |
hvac_mode | string | No | A valid hvac_mode for the entity |
preset_mode | string | No | A valid preset_mode for the entity |
fan_mode | string | No | A valid fan_mode for the entity |
swing_mode | string | No | A valid swing_mode for the entity |
temperature | number | No | A target temperature for the entity |
color | string | No | Custom color for the icon when toggle |
type: entities
entities:
- entity: climate.thermostat_kitchen
type: "custom:climate-mode-entity-row"
modes:
- hvac_mode: "off"
- preset_mode: "eco"
- preset_mode: "comfort"
type: entities
entities:
- entity: climate.thermostat_kitchen
type: 'custom:climate-mode-entity-row'
name: My Thermostat
icon: 'mdi:home'
modes:
- hvac_mode: "off"
icon: "mdi:snowflake"
color: "#B3E5FC"
- preset_mode: "eco"
icon: "mdi:moon-waxing-crescent"
color: "#9575CD"
- preset_mode: "comfort"
icon: "mdi:weather-sunny"
color: "#FFC107"
If your thermostat entity does not support presets, you can directly define target temperature in the card
type: entities
entities:
- entity: climate.heatpump
type: custom:climate-mode-entity-row
modes:
- hvac_mode: "off"
icon: "mdi:power"
color: "#ef5350"
- hvac_mode: "heat"
temperature: 19
icon: "mdi:leaf"
color: "#66bb6a"
- hvac_mode: "heat"
temperature: 21
icon: "mdi:fire"
color: "#FFC107"
You can combine or mix hvac_mode, preset_mode, fan_mode, swing_mode and temperature to build your custom controls.
type: entities
entities:
- entity: climate.thermostat_kitchen
type: "custom:climate-mode-entity-row"
name: My Thermostat
icon: "mdi:home"
modes:
- icon: "mdi:brightness-auto"
hvac_mode: "heat"
fan_mode: "on_high"
swing_mode: "auto"
color: "#34c6eb"
- hvac_mode: "off"
icon: "mdi:snowflake"
color: "#B3E5FC"
- hvac_mode: "heat"
icon: "mdi:fire"
color: "#FFC107"
- fan_mode: "off"
swing_mode: "off"
icon: "mdi:fan-off"
color: "#FF6659"
- fan_mode: "on_high"
swing_mode: "auto"
icon: "mdi:fan"
color: "#76D275"