this seems a very clear message. the unit is incorrect. it really should be m³ and if the entity doesn’t have that, you should either be able to set it in the customize, or preferably, check in the core repo on the integration and file an issue there.
did you check here https://www.zuidwijk.com/initial-setup-slimmelezer/ ?
sure template sensors are allowed, as long as they fit the bill. that is, are of the correct state_class and have the correct unit
- unique_id: lights_total_device_energy
name: Lights total device energy
state: >
{{states('sensor.lights_inside_total_device_energy')|float(0) +
states('sensor.lights_outside_total_device_energy')|float(0)}}
unit_of_measurement: kWh
icon: mdi:lightbulb-group-outline
device_class: energy
state_class: total_increasing
working just fine in the panel
the state_classes have been fixed in core HA to set the last_reset, so you shouldn’t need to set that manually.
btw, if yours in a total sensor, the state_class should be total_increasing.
what does your sensor look like in dev tools states?
Hi, have problem with my 2xBlitzwolf sph2 wifi (mqtt) smart plug sensors. How to solve this? In my configuration.yaml not have these sensors. Get from mqtt integration. TY
I had an issue that stumped me for a while around this. After setting up the Riemann sum integration sensors, I was only getting 3/4 options showing in the energy configuration page.
It turned out that one of the units hasn’t configured correctly even though all of the config yaml was the same.
I had to go to the Developer tools > statistics, then ‘fix issue’ regarding the unit
I have a couple of energy measuring wall plugs. Some work with wifi (Tasmota) and I can add them as ‘Individual devices’ in the Energy page. But I also have a Fibaro Zwave plug, and I just can’t get this right.
I have add some parameters with the customize.yaml file.
sensor.fibaro_system_fgwpe_f_wall_plug_gen5_energy:
state_class: total_increasing
unit_of_measurement: kWh
device_class: energy
This is how it looks in Developer Tools states list:
I’m pulling my hair out with this one. I have a serial sensor that gets parsed to show me instant watts. Which works fine.
I used this yaml to turn that into a kWh meter.
- platform: integration
source: sensor.powerw
name: House Energy kWh
unit_prefix: k
unit_time: h
round: 2
And that seems to work a treat:
You would think that it would just show up in the list and I’d be off to the races with energy right? Well it’s not in the list for some reason. And I can’t figure out why.
I have the same exact issue - either many people are not understanding something or there have been changes that were not implemented/communicated correctly. This should be much easier
I am not able to see energy_ev or any other devices in the Energy as Individual Device. In the Development tab, I can see energy_ev without issues. What am I doing wrong?
PS: I know that I don’t need the sum, but the plan is to extend what I include in it.
LE: After 30’ the information become available.
template:
- sensor:
- name: "Energy EV"
unique_id: energy_ev
unit_of_measurement: "kWh"
state_class: measurement
device_class: energy
state: >
{{ [ states('sensor.car_charger_channel_1_energy') ]
| map('float', 0) | sum }}
attributes:
last_reset: '1970-01-01T00:00:00+00:00'
availability: >
{{ not 'unavailable' in
[ states('sensor.car_charger_channel_1_energy') ] }}
So for the energy dashboard all my inputs come from “total_increasing” meter readings rather than Point in Time measurements. I’m not sure if this is a requirement but I think it may be.