homeassistant-midea-dehumidifier icon indicating copy to clipboard operation
homeassistant-midea-dehumidifier copied to clipboard

Tank and Filter Status

Open SruiSan opened this issue 4 years ago • 2 comments
trafficstars

Hi All!

First of all, congrats for this add-on

I have the EVA ION PRO Wifi

I'm trying for show the filter and tank status in Home Assistant, but I cant:

min_humidity: 40
max_humidity: 85
available_modes:
  - Target_humidity
  - Continuos
  - Smart
  - Dryer
humidity: 35
mode: Smart
ion: 1
fan_speed_mode: High
fan_speed: 80
current_humidity: 56
tank_show: false
filter_show: false
friendly_name: midea_dehumidifier_12345671234567
supported_features: 1
device_class: dehumidifier

My sensor definition:

midea_tank:
  friendly_name: "Tanque"
  value_template: "{{ states.humidifier.midea_dehumidifier_12345671234567.attributes.tank_show==true }}"
midea_filter:
  friendly_name: "Filtro"
  value_template: "{{ states.humidifier.midea_dehumidifier_12345671234567.attributes.filter_show==true }}"

I need something more?

Thank you very much

SruiSan avatar Jun 05 '21 23:06 SruiSan

Hi All!

First of all, congrats for this add-on

I have the EVA ION PRO Wifi

I'm trying for show the filter and tank status in Home Assistant, but I cant:

min_humidity: 40
max_humidity: 85
available_modes:
  - Target_humidity
  - Continuos
  - Smart
  - Dryer
humidity: 35
mode: Smart
ion: 1
fan_speed_mode: High
fan_speed: 80
current_humidity: 56
tank_show: false
filter_show: false
friendly_name: midea_dehumidifier_12345671234567
supported_features: 1
device_class: dehumidifier

My sensor definition:

midea_tank:
  friendly_name: "Tanque"
  value_template: "{{ states.humidifier.midea_dehumidifier_12345671234567.attributes.tank_show==true }}"
midea_filter:
  friendly_name: "Filtro"
  value_template: "{{ states.humidifier.midea_dehumidifier_12345671234567.attributes.filter_show==true }}"

I need something more?

Thank you very much

Hi , I want to show tank status in my home assistant lovelace too. I have your same EVA ION product, do you solved your problem ?

5a2v0 avatar Oct 24 '21 17:10 5a2v0

Hi All! First of all, congrats for this add-on I have the EVA ION PRO Wifi I'm trying for show the filter and tank status in Home Assistant, but I cant:

min_humidity: 40
max_humidity: 85
available_modes:
  - Target_humidity
  - Continuos
  - Smart
  - Dryer
humidity: 35
mode: Smart
ion: 1
fan_speed_mode: High
fan_speed: 80
current_humidity: 56
tank_show: false
filter_show: false
friendly_name: midea_dehumidifier_12345671234567
supported_features: 1
device_class: dehumidifier

My sensor definition:

midea_tank:
  friendly_name: "Tanque"
  value_template: "{{ states.humidifier.midea_dehumidifier_12345671234567.attributes.tank_show==true }}"
midea_filter:
  friendly_name: "Filtro"
  value_template: "{{ states.humidifier.midea_dehumidifier_12345671234567.attributes.filter_show==true }}"

I need something more? Thank you very much

Hi , I want to show tank status in my home assistant lovelace too. I have your same EVA ION product, do you solved your problem ?

¡Hi! Finally, not a issue, I was too much impatient

When the tank is full o filter need to be changed, the state changes to "True" Is not possible to check the level of the tank in %, only if it's full or not.

My actual lovelace card is:

type: entities
entities:
  - entity: humidifier.midea_dehumidifier_32985348847964
    name: Estado
  - entity: sensor.midea_dehumidifier_32985348847964_humidity
    name: Humedad Actual
  - entity: input_select.dehumidifier_fan_mode
    icon: mdi:fan
    name: Velocidad Ventilador
  - entity: input_select.dehumidifier_modes
    icon: mdi:air-humidifier
    name: Modo
  - entity: input_boolean.dehumidifier_ion
  - entity: sensor.midea_tank
    icon: mdi:water
  - entity: sensor.midea_filter
    icon: mdi:filter
title: Deshumidificador

SruiSan avatar Oct 26 '21 07:10 SruiSan