Power usage single devices, how to

Hi
I searched this forum but couldn’t find a answer (maybe my search was wrong)

I have several power sockets that monitor how much power the device connected uses but can’t display power usage in energy monitor. Is this because of this isn’t implemented in the module? Or hve I missed something.

It’s power sockets connected to z-wave (telldus), the accumulated power is in the device but not possible to have on monitor single devices in energy page

Also for Adax wall oven the app from Adax shows power usage, but this value isn’t available in the home assistant plugin, hense it’s not possible to monitor

Since both telldus and Adax is official plugins, how do I make a wish for this to be implemented

It might be that the unit is wrong or that the type of sensor is wrong.
Read more about it here.

Additionally refer to this page: Expected data source not listed - Home Assistant

As a workaround you could create a template sensor that adds the necessary entity properties. Note that you need a total amount (kWh). You can not use current power values (e.g. W)!

More info here: Sensor Entity | Home Assistant Developer Docs

Example below.

template:
  - sensor:
      - name: "Device kWh"
        unit_of_measurement: "kWh"
        state_class: total
        device_class: energy
        state: >
          {{states('sensor.device_total_kwh')}}

Please show specifically what data you currently get from the devices. Screen shot of the device page would be helpful.

I will try to setup a template for the telldus devices, because as the integration provides watt, when the actual number is kwh.

For Adax there is no numbers coming from integration, so it needs to be added

After adding the template i got a new device with the name of the template, I got possiblity to monitor power consumption.

But someone should look into the integration for telldus, all values comes in as W , even if the values in telldus is in. volt, amp or total power usage (KwH)

You might have to report it on the GitHub page of the integration.