Hey guys, since a water leak in my basement I have powerful dehumidifier and a big fan in my basement to dry the floor and the walls.
Actually the fan and the dehumidifier have a sum power consumption of about 800W. I have an automation which notifies me when the tank of the dehumidifier is full (the device turns off when the tank is full so I only have to monitor the powerconsumption to decide if its full):
alias: Entlüfter leeren
description: ""
trigger:
- platform: numeric_state
entity_id: sensor.lumi_lumi_plug_maeu01_electricalmeasurement
below: 400
condition: []
action:
- service: notify.mobile_app_iphone
data:
message: Kellerentlüfter entleeren!
title: Entlüfter ist voll
- service: notify.my_lametric
data:
data:
icon: 24120
priority: critical
sound: water1
message: Entlüfter ist voll
mode: single
But now I would like to see additionally how long the time span is between two emptying of the container and how long the time span was between container is full and the emptying was.
Sense behind it:
I would like to see how the time span changes between two emptying in order to be able to estimate whether the drying is effective (not only visually).
What is the best way to implement this as an automation?
I am still quite new to HomeAssistant and the automations, so forgive the perhaps stupid question