Night/day lowering of temperature #10
Replies: 3 comments
-
This lowering don't rely on just time, but the Alarm state. Here is a terribly messy template-sensor i use as a base-temp sensor for my heat-pump, which uses a different input_number, based on my alarm state. And if the price is gaining (or better yet, check if the state is 1 for PriceAnalyzer) in the morning, based on a input_datetime , set 'hometemp'. Use the new sensor in an automation to update the temperature on a climate-entity, and voila. A lot of this template sensor is old stuff, from before i developed PriceAnalyzer. This could be done a lot easier now, by utilizing the PriceAnalyzer state and attributes :-) |
Beta Was this translation helpful? Give feedback.
-
Or did you want this functionality in the core functionality in PriceAnalyzer? I'm thinking about implementing a service-call or something, to be able to subtract or add some degrees to the analyzer-state from an automation, which could solve this as well, on the integration-level. I also want to add a service call to be able to change how many degrees priceanalyzer change the thermostat by. So you can choose to boost the thermostat by 2 degrees, and save with 4 degrees, with an automation, depending on the max price for the day, for example. |
Beta Was this translation helpful? Give feedback.
-
@endreigesund, I have done the night and day lowering of the temperature with HA automation. First I made a automation to change the set point temperature with the helper: "input_number.set_temperatur_23_grader". When it is night (binary_sensor.natt_22_00_05_00 = on) the temperature lower three degree to 20 degree Celsius, but in the daytime (binary_sensor.natt_22_00_05_00 = off) it rise to normal set point temperature (23 degree Celsius).
Then I use Erlends blueprint to adjust the climate temperature for my Heatit floor thermostat:
|
Beta Was this translation helpful? Give feedback.
-
How would you implement this in automation/blueprint and also take into consideration if it's a good idea based on the forecast of price pr hour?
Beta Was this translation helpful? Give feedback.
All reactions