IKEA Inspelning. Negative power

Hi! This is my first post. I hope it’s in the right category.

I run Conbee (1) with Home Assistant on a Raspberry Pie 4. I use the deConz integration.

I have a problem with IKEA Inspelning power
metering. It shows negative values of the power. I have uploaded the latest DDF-package.

There is also another strange thing about the energy measurment. Maybe it’s correct, but I dont understand why.
The measurement is ”flickering” between -1 w and -970 w though everything is in ”stand-by”(See screenshot)

My Inspelning is connected to measure the power from my tv, reciever, Apple TV, a switch, a tv-box and a wifi-ap. They are all connected to the same outlet where Inspelning is connected to the wall outlet.


Hello do you have access to the DDF ?
Can try with removing all the “state/power_divisor” part and replace

        {
          "name": "state/power",
          "parse": {
            "fn": "zcl:attr",
            "ep": 1,
            "cl": "0x0B04",
            "at": "0x050B",
            "eval": "if (Attr.val != -32768) { Item.val = Math.round(Attr.val / R.item('state/power_divisor').val) }"
          },

by


        {
          "name": "state/power",
          "parse": {
            "fn": "zcl:attr",
            "ep": 1,
            "cl": "0x0B04",
            "at": "0x050B",
            "eval": "if (Attr.val != -32768) { Item.val = Attr.val / 1 }"
          },

Thank you! I’m sorry but I dont know how to change this. I found the “Edit DDF” but I can’t see the DDF file. It looks as if the directory /data/.local/share/dresden-elektronik/deCONZ/devices is empty.

What version of deCONZ are you running? The INSPELNING needs v2.29.2 or later. See IKEA INSPELNING Smart Plug with kWh meter · Issue #7948 · dresden-elektronik/deconz-rest-plugin · GitHub.

Thank you! I’m on v2.28.1! I found the info about v2.29.2 on Github, but I really dont know wich of the files I should use. amd64? arm64? armhf64 win32?
Would you please help me?

The file depends on the CPU of your system. I think with HA, you’ll need to wait for the next non-beta release of deCONZ to be included in HA.

Yes, that might be the easiest way. But could I plug my Conbee usb-stick into my Windows machine and do the update?

You need to update your deconz version, not your gateway firmware version.