Replies: 3 comments 2 replies
-
For the unconnected circuits, just delete their lines in the config. For the connected circuits with gibberish data, you're using the wrong phase. I'd suggest double-checking & updating the config. Also make sure you delete or comment out the places where the circuits are used in template sensors. For example, if you're deleting the following unused sensors
You should also delete the following lines - - { platform: copy, name: "Circuit 14 Power", source_id: cir14, filters: *throttle_avg }
- - { platform: copy, name: "Circuit 15 Power", source_id: cir15, filters: *throttle_avg }
- - { platform: copy, name: "Circuit 16 Power", source_id: cir16, filters: *throttle_avg } - - { power_id: cir14, platform: total_daily_energy, accuracy_decimals: 0, restore: false, name: "Circuit 14 Daily Energy", filters: *throttle_time }
- - { power_id: cir15, platform: total_daily_energy, accuracy_decimals: 0, restore: false, name: "Circuit 15 Daily Energy", filters: *throttle_time }
- - { power_id: cir16, platform: total_daily_energy, accuracy_decimals: 0, restore: false, name: "Circuit 16 Daily Energy", filters: *throttle_time } and update the mathematical expression here to remove the unused circuits: - platform: template
lambda: !lambda |-
return max(0.0f, id(total_power).state -
id( cir1).state -
id( cir2).state -
id( cir3).state -
id( cir4).state -
id( cir5).state -
id( cir6).state -
id( cir7).state -
id( cir8).state -
id( cir9).state -
id(cir10).state -
id(cir11).state -
id(cir12).state -
- id(cir13).state -
+ id(cir13).state)
- id(cir14).state -
- id(cir15).state -
- id(cir16).state);
update_interval: never # will be updated after all power sensors update via on_update trigger
id: balance_power |
Beta Was this translation helpful? Give feedback.
-
Thank you flaviut for your great job on this project and for your answer but I can't use the wrong phase because I have only one in my house and in my configuration :
|
Beta Was this translation helpful? Give feedback.
-
After analysing my graphs I can confirm that an unconnected circuit ( Circuit 3 )produces much more noise than a connected one ( Circuit 2 ): Wrong measurements of Circuit 2 is limited to 2 W max, is it possible to do better than that (filtering or something else) ? |
Beta Was this translation helpful? Give feedback.
-
My new flashed Emporia Vue 2 displays ghost values on connected and unconnected circuits.
My installation has only one phase, I use Clamp A 200A and 2 two 50A clamps ( Circuit 1 & Circuit 2) but phase A, phase B and all 16 circuits are configured and retrieved.
Near to each update unconnected or unloaded circuits switch beetwen 0W and some value < 80W after some hours these unloaded or unconnected circuits have an important daily energy.
All unconnected 3,5mm and 2,5mm are closed with the plugs,
Red, Blue and White cables are connected to Neutral.
Basic ESPHome code ( https://github.com/emporia-vue-local/esphome ) is used.
What do I miss ?
Beta Was this translation helpful? Give feedback.
All reactions