Companion app working here.
Hi, thank you for replying. I have a kWh entry, have you seen the bottom screenshot? any other tip?
You don’t have the required attributes.
Yep, that’s what I ended up doing. Next time I should check if I’m complaining about a 3rd party integration or not first too!
That’s helpfull? What attributes do I need? What do I mis where?
Thanks for this. Where is this documented? I could not find that in the referred documentation?
Sorry to bother again (3rd strike haha ):
I’m still stuck with the cost entity not showing up (2021.8.0: Feel the energy - #271 by e-raser).
Can anyone point me to the right direction? Maybe @tom_l ? I have a manual total cost entity I would like to select but it doesn´t show up, although it has all the needed attributes and I´ve really read all documentation available twice meanwhile
Except last_reset
There is a new cost entity that is automatically created when you enable the new Energy feature.
Check Developer Tools/Entities to see its name ( eg sensor.xxxxx_cost) and add it to your recorder section in your config file.
What Nick says, but also: do you Record the entities?
Btw, anyone seeing Co2 and Forecast.solar? Both are unavailable right now ?
neither is available here either
I have the same problem. Any news ?
Don’t ask in more than one thread please.
same problem, had it all working but it stopped after a recent update.
Update 8.3 fixed a lot of sensor issues:
Release 2021.8.3 - August 6
- Fix sensor PLATFORM_SCHEMA for ebox and enphase_envoy (@mib1185 - #54142) (enphase_envoy docs)
It was not only Ebox and Enphase installations. It fixed my Ecowitt weather station.
You need to add an integration sensor for your Dryer_power sensor
https://www.home-assistant.io/integrations/integration/
Something like this;
sensor:
- platform: integration
source: sensor.dryer_power
name: energy_dryer_kwh
unit_prefix: k
round: 2
Then add this into the utility_meter
https://www.home-assistant.io/integrations/utility_meter/
utility_meter:
energy_dryer_day_kwh:
source: sensor.energy_dryer_kwh
cycle: daily
You will then end up with a sensor called energy_dryer_day_kwh which will add up your dryer_power sensor in W into energy kWh and reset each day.