Skip to content

Releases: artem-sedykh/mini-climate-card

v1.2.4

14 Jun 12:29
55296c8
Compare
Choose a tag to compare

v1.2.4

Downloads

FIXED

  • Styles fixed #23(When the toggle_button is hidden)

v1.2.3

10 Jun 12:45
af63af3
Compare
Choose a tag to compare

v1.2.3

Downloads

ADDED

  • added the ability to hide hvac_mode #15
- type: custom:mini-climate
  entity: climate.dahatsu
  name: Кондиционер
  hvac_mode:
    hide: on

v1.2.2

10 Jun 10:51
03b5796
Compare
Choose a tag to compare

v1.2.2

Downloads

ADDED

  • Ability to set a fixed number of decimal places for temperature
- type: custom:mini-climate
  entity: climate.dahatsu
  name: Кондиционер
  temperature:
    fixed: 1

rounding can be used

- type: custom:mini-climate
  entity: climate.dahatsu
  name: Кондиционер
  temperature:
    round: 1

difference between round and fixed

21.123 round: 1 => 21.1
21.123 round: 2 => 21.12
21 round: 1 => 21

21.123 fixed: 1 => 21.1
21 fixed: 1 => 21.0
21 fixed: 2 => 21.00

v1.2.1

09 Jun 21:17
10787f5
Compare
Choose a tag to compare

v1.2.1

Downloads

ADDED

  • Add new secondary_info type: hvac-action #9
    By default, translations from ha frontend
- type: custom:mini-climate
  entity: climate.dahatsu
  secondary_info:
    type: hvac-action

but you can customize your translations

- type: custom:mini-climate
  entity: climate.dahatsu
  secondary_info:
    type: hvac-action
    source:
      cooling: Охлаждение

You can set your own icon for each hvac-action

- type: custom:mini-climate
  entity: climate.dahatsu
  secondary_info:
    type: hvac-action
    source:
      cooling:
        icon: 'mdi:snowflake'
        name: Охлаждение

You can set your own icon for each hvac-action

- type: custom:mini-climate
  entity: climate.dahatsu
  secondary_info:
    type: hvac-action
    source:
      cooling:
        icon: 'mdi:snowflake'
        name: Охлаждение

Or you can use one permanent icon

- type: custom:mini-climate
  entity: climate.dahatsu
  secondary_info:
    type: hvac-action
    icon: 'mdi:cached'
  • Add new secondary_info type: fan-mode-dropdown #10
- type: custom:mini-climate
  entity: climate.dahatsu
  secondary_info: fan-mode-dropdown

image

  • Added the ability to make buttons on the main screen
- type: custom:mini-climate
  entity: climate.dahatsu
  fan_mode:
    location: main

image

This rule also applies to buttons.

- type: custom:mini-climate
  entity: climate.dahatsu
  buttons:
    custom_button:
      location: main

image

With these settings, the data may not fit on the mobile version!

v1.1.0

06 Jun 11:29
4beaa4a
Compare
Choose a tag to compare

v1.1.0

Downloads

FIXED

  • Smoothness of change of the set temperature.

CHANGED

  • Automatic calculation max-width entity name #6

ADDED

  • When you click on the button, it instantly changes its state, but if the actual state has not changed after action_timeout
    it returns to the previous state, default value 2000 milliseconds
- type: custom:mini-climate
  entity: climate.dahatsu
  buttons:
    turbo:
      icon: mdi:weather-hurricane
      topic: 'dahatsu/turbo/set'
      state:
        attribute: turbo
        mapper: "(state, entity) => state ? 'on': 'off'"
      action_timeout: 2000
      toggle_action: >
        (state) => this.call_service('mqtt', 'publish', { payload: this.toggle_state(state), topic: this.topic, retain: false, qos: 1 })
  • indicator tap_action configuration, see readme with detailed configuration #5
- type: custom:mini-climate
  entity: climate.dahatsu
  indicators:
    humidity:
      icon: mdi:water
      unit: '%'
      source:
        entity: sensor.humidity
      tap_action: more-info
      # or
      # tap_action:
      #  action: more-info
  • Added configuration for secondary_info supported types [last-changed, fan-mode, hvac-mode], default type fan-mode
- type: custom:mini-climate
  entity: climate.dahatsu
  secondary_info: last-changed

- type: custom:mini-climate
  entity: climate.dahatsu
  secondary_info:
    type: fan-mode
    icon: 'mdi:fan'

- type: custom:mini-climate
  entity: climate.dahatsu
  secondary_info: hvac-mode

v1.0.3

05 Jun 12:57
93fa348
Compare
Choose a tag to compare

v1.0.3

Downloads

FIXED

  • temperature config fixed issue

v1.0.2

04 Jun 20:35
Compare
Choose a tag to compare

v1.0.2

Downloads

ADDED

  • Added group property for display in entities container
  • Add toggle button configuration

FIXED

  • Cannot set property '__init' of undefined issue

v1.0.1

02 Jun 11:22
Compare
Choose a tag to compare

v1.0.1

Downloads

  • Initial release