Home
Smart Heating DIY
- Details
- Hits: 1180
With my oldest having to study for their exams, I had to provide some heaters in their rooms. Now these days you can buys smart heaters but I wanted to do that myself.
I purchased a simple, cheap Infrared Panel heater and connected via a shelly Plug (1). As I have temperature and humidity sensors (2) in every room of the house, I used Dual Smart Thermostat (3) combined with ECO Heating Ultimate (5) blueprint to create a heating plan.
Now the room will be kept on 15C at all times, when Tuur or Gust is home (HA state) the temp will go up to 17C.
I also created a "comfort temp switch" (3) that changes the thermostat to 21C and holds that for 2h. This to keep them warm when studying.
Easy way to take control of a the heating not having to worry about heater being on the whole day
Power consumption in house. Use Labels
- Details
- Hits: 2247
I recently changed my home power connection from 3x230V (32A) to 3x230V+n (25A). This had more impact than I originally anticipated on.
First of all, I have to change some of my breakers from 32A to 25A.
Secondly, I had to rebalance the different phases in my breaker board.
As I need to make some changes, I would also update my breaker box to the newest AREI rules, stating that all internal devices needs to be protected by a 30mA differential breaker.
As I had almost all my devices monitored by a shelly device. I was able to see the power consumption per device.
Now, to rebalance the load, I needed to know what device belongs to what breaker. On top, I wanted to know what breakers belong to what phase so we can balance evenly.
To solve this, I used Labels.
I created 2 type of labels:
- 'Automaat X' (one for each breaker)
- 'Lijn Y' (one for each phase)
I attached these labels to the Shelly sensors in bulk by using homeassistant.add_label_to_entity service
Once combined I created a sensor for each "Automaat X" and "Lijn Y".
- name: "Huidig verbruik in huis - Lijn 3"
unique_id: 8d374087-28ea-479d-9da1-4803fe14b2e5
device_class: power
state_class: measurement
state: "{{ expand(label_entities('Lijn 3')) | selectattr('attributes.device_class','defined') | selectattr('attributes.device_class','==','power')| selectattr('attributes.state_class','defined') | selectattr('attributes.state_class','==','measurement') | selectattr('state', '!=', 'unavailable') | map(attribute='state') | map('float') | list | sum | round(0)}}"
unit_of_measurement: "W"
- name: "Huidig verbruik in huis - Automaat A"
unique_id: 7a43a116-4e5a-4901-99f6-ded8063ba4c6
device_class: power
state_class: measurement
state: "{{ expand(label_entities('Automaat A')) | selectattr('attributes.device_class','defined') | selectattr('attributes.device_class','==','power')| selectattr('attributes.state_class','defined') | selectattr('attributes.state_class','==','measurement') | selectattr('state', '!=', 'unavailable') | map(attribute='state') | map('float') | list | sum | round(0)}}"
unit_of_measurement: "W"
|

- type: custom:mushroom-template-card secondary: 'J - 20A - Buiten' primary: >- {{ ((states('sensor.huidig_verbruik_in_huis_automaat_j') | float() / 230 )| round (2)) }} A icon: mdi:fuse |
- name: "Huidig verbruik in huis - Lijn 3"
unique_id: 8d374087-28ea-479d-9da1-4803fe14b2e5
device_class: power
state_class: measurement
state: "{{ expand(label_entities('Lijn 3')) | select('in',expand(label_entities('Primary Use'))) | selectattr('attributes.device_class','defined') | selectattr('attributes.device_class','==','power')| selectattr('attributes.state_class','defined') | selectattr('attributes.state_class','==','measurement') | selectattr('state', '!=', 'unavailable') | map(attribute='state') | map('float') | list | sum | round(0)}}"
unit_of_measurement: "W"
- name: "Huidig verbruik in huis - Automaat A"
unique_id: 7a43a116-4e5a-4901-99f6-ded8063ba4c6
device_class: power
state_class: measurement
state: "{{ expand(label_entities('Automaat A')) | select('in',expand(label_entities('Primary Use'))) | selectattr('attributes.device_class','defined') | selectattr('attributes.device_class','==','power')| selectattr('attributes.state_class','defined') | selectattr('attributes.state_class','==','measurement') | selectattr('state', '!=', 'unavailable') | map(attribute='state') | map('float') | list | sum | round(0)}}"
unit_of_measurement: "W"
|
