Bonjour à tous
@bokub un grand merci pour l’addon. Il fonctionne parfaitement chez moi.
Je rencontre une problèmatique pour l’intégration des couts tempo (6 tarifs. HP/HC, jours bleu, blanc, rouge)
As tu une idée de la solution possible ?
{% if is_state('sensor.electricity_tariff', 'red') %}
{% if now().hour >= 22 or now().hour < 6 %}
0.1568
{% else %}
0.7562
{% endif %}
{% elif is_state('sensor.electricity_tariff', 'white') %}
{% if now().hour >= 22 or now().hour < 6 %}
0.1486
{% else %}
0.1894
{% endif %}
{% elif is_state('sensor.electricity_tariff', 'blue') %}
{% if now().hour >= 22 or now().hour < 6 %}
0.1296
{% else %}
0.1609
{% endif %}
{% else %}
0.23
{% endif %}