Home Energy Meter Gen5

I currently have 2 x 200amp service running into my house. Bought 2 of these to hook up and have successfully got data coming in on the first one. Before I hook up the second one, I was wondering if it is possible to somehow add both sensor values together to sum up my whole house energy? Perhaps some kind of template needed to do this?

Yes very easy with a template sensor.

value_template: "{{ states('sensor.sensor_1')|float + states('sensor.sensor_2')|float }}"
1 Like

Works perfect…and I even learned how to do the same with state attributes! Thanks!