I have the same problem with the Energy Export Daily Sensor! It does not show up whatever I do.
And right now i am producing more energy than i am consuming!
My configuration is as shown below:
in configuration.yaml:
template: !include templates.yaml
sensor:
#Sensor for Riemann sum of energy import (W → Wh)
- platform: integration
source: sensor.power_import
name: energy_import_sum
unit_prefix: k
round: 2
method: left
#Sensor for Riemann sum of energy export (W → Wh)
- platform: integration
source: sensor.power_export
name: energy_export_sum
unit_prefix: k
round: 2
method: left
#Sensor for Riemann sum of energy consumption (W → Wh)
- platform: integration
source: sensor.power_consumption
name: energy_consumption_sum
unit_prefix: k
round: 2
method: left
And at the bottom of the configuration.yaml i have:
utility_meter:
energy_import_daily:
source: sensor.energy_import_sum
name: Energy Import Daily
cycle: daily
energy_import_monthly:
source: sensor.energy_import_sum
name: Energy Import Monthly
cycle: monthly
energy_export_daily:
source: sensor.energy_export_sum
name: Energy Export Daily
cycle: daily
energy_export_monthly:
source: sensor.energy_export_sum
name: Energy Export Monthly
cycle: monthly
energy_consumption_daily:
source: sensor.energy_consumption_sum
name: Energy Consumption Daily
cycle: daily
energy_consumption_monthly:
source: sensor.energy_consumption_sum
name: Energy Consumption Monthly
cycle: monthly
In templates.yaml I have:
#Template sensor for values of power import (active_power > 0)
- name: "Power Import"
unit_of_measurement: 'W'
state_class: measurement
device_class: power
state: >
{% if states('sensor.shellyem3_mycustomnumber_channel_a_power')|float(0) + states('sensor.shellyem3_mycustomnumber_channel_b_power')|float(0) + states('sensor.shellyem3_mycustomnumber_channel_c_power')|float(0) > 0 %}
{{ states('sensor.shellyem3_mycustomnumber_channel_a_power')|float(0) + states('sensor.shellyem3_mycustomnumber_channel_b_power')|float(0) + states('sensor.shellyem3_mycustomnumber_channel_c_power')|float(0) }}
{% else %}
0
{% endif %}
availability: >
{{
[ states('sensor.shellyem3_mycustomnumber_channel_a_power'),
states('sensor.shellyem3_mycustomnumber_channel_b_power'),
states('sensor.shellyem3_mycustomnumber_channel_c_power')
] | map('is_number') | min
}}
#Template sensor for values of power export (active_power < 0)
- name: "Power Export"
unit_of_measurement: 'W'
state_class: measurement
device_class: power
state: >
{% if states('sensor.shellyem3_mycustomnumber_channel_a_power')|float(0) + states('sensor.shellyem3_mycustomnumber_channel_b_power')|float(0) + states('sensor.shellyem3_mycustomnumber_channel_c_power')|float(0) < 0 %}
{{ (states('sensor.shellyem3_mycustomnumber_channel_a_power')|float(0) + states('sensor.shellyem3_mycustomnumber_channel_b_power')|float(0) + states('sensor.shellyem3_mycustomnumber_channel_c_power')|float(0))|abs }}
{% else %}
0
{% endif %}
availability: >
{{
[ states('sensor.shellyem3_mycustomnumber_channel_a_power'),
states('sensor.shellyem3_mycustomnumber_channel_b_power'),
states('sensor.shellyem3_mycustomnumber_channel_c_power')
] | map('is_number') | min
}}
#Template sensor for values of power consumption
- name: "Power Consumption"
unit_of_measurement: 'W'
state_class: measurement
device_class: power
state: >
{% if (states('sensor.power_export')|float(0)) > 0 and (states('sensor.solaranlage_switch_0_energy')|float(0) - states('sensor.power_export')|float(0)) < 0 %}
{% elif (states('sensor.power_export')|float(0)) > 0 and (states('sensor.solaranlage_switch_0_energy')|float(0) - states('sensor.power_export')|float(0)) > 0 %}
{{ (states('sensor.solaranlage_switch_0_energy')|float(0)) - states('sensor.power_export')|float(0) }}
{% else %}
{{ states('sensor.power_import')|float(0) + states('sensor.solaranlage_switch_0_energy')|float(0) }}
{% endif %}
No errors but also no available Energy Export Sensor! Energy Import and Energy Consumption Sensors are displayed! I cant find any errors here…just changed my Shelly3EM id to “mycustomnumber” in this text. “sensor.solaranlage_switch_0_energy” is my Shelly Plus Plug S energy sensor.
Where is the mistake?