artem-sedykh / mini-climate-card

Minimalistic climate card for Home Assistant Lovelace UI
MIT License
262 stars 19 forks source link

Change icon #116

Closed vasyna closed 1 year ago

vasyna commented 1 year ago
image

How can I change this icon?

regevbr commented 1 year ago

Please send over your yaml config

vasyna commented 1 year ago

Please send over your yaml config

type: custom:mini-climate
name: Теплый пол
entity: climate.0x50325ffffe0c28a5
icon: mdi:heat-wave
fan_mode:
  hide: 'on'
target_temperature:
  icons:
    up: mdi:chevron-up
    down: mdi:chevron-down
  unit: °C
  min: 16
  max: 31
  step: 0.5
  change_action: >
    (value, entity) => this.call_service('climate', 'set_temperature', {
    entity_id: entity.entity_id, temperature: value })
regevbr commented 1 year ago
type: custom:mini-climate
name: Теплый пол
entity: climate.0x50325ffffe0c28a5
icon: mdi:heat-wave
fan_mode:
  hide: 'on'
secondary_info:
  icon: 'mdi:light-flood-down'
target_temperature:
  icons:
    up: mdi:chevron-up
    down: mdi:chevron-down
  unit: °C
  min: 16
  max: 31
  step: 0.5
  change_action: >
    (value, entity) => this.call_service('climate', 'set_temperature', {
    entity_id: entity.entity_id, temperature: value })
vasyna commented 1 year ago

Thank you very much