Kolia56
Kolia56
So I had to defined two template sensors: ``` template: - sensor: - name: hasmart_irrigation_time_trigger state: > {{ ((state_attr('input_datetime.watering_s1_start', 'timestamp') - 50) | timestamp_custom(local=False))[-8:] }} - name: irrigation_unlimited_watering_computation_trigger state: >...
thank you for the tip. I'll make sure a piece of code is added at startup.
You are right, thank you. I'll will shortly update the code above. I discovered that trying to make a template sensor from an input_datetime is a dead end because it...
Thanks for the tip, I never experienced yet the template trigger, I think it can make it. HA is full of ressources
Here is the final code, no templates. Much more elegant and efficient. Watering time is computed 2 minutes before scheduled time and set one minute before it. Again thank you...
I have a similar configuration, 2 sequences, and 13 zones. Adjusting to 0% at controller level or at sequence level does work, at least card displays watering time to 0....
Could you try this: - first of all restart HA to make sure everything is clean - then at controller level this piece of code (with developer/services ``` service: irrigation_unlimited.adjust_time...
Hum, strange. There is one difference between your configuration and mine. In zones you haven't defined zone_id's. Could you try that?
I currently track water volume for each zone with the following code. There is one physical meter (sensor.556) that never resets Definition of helpers ``` utility_meter: water_meter_id2: name: Consommation eau...
I'm quite ready to volunteer on this matter. However I'm not too sure to understand what is the kind of sensor from which data is needed. Could you elaborate a...