Hi,
the power value is not displayed correctly in Phoscon App.
42 A current ? what is on the device ?
Effectively there is a problem If I try to compute the power it’s more 5 Kw than 5 W.
232 * 42 = 9.7KW (without power factor)
The code use
{
"name": "state/power",
"refresh.interval": 360,
"read": {
"at": "0x050b",
"cl": "0x0b04",
"ep": 1,
"fn": "zcl:attr"
},
"parse": {
"at": "0x050b",
"cl": "0x0b04",
"ep": 1,
"eval": "Item.val = Attr.val / 100;"
}
},
ATM it’s / 100, but I think it need to be * 1000.
Sorry @Smanar, but current is output in mA and you’re right, it could be due to the divider. @Olli You could check what value is represented by 0x0605.
Lol, ha yes right, it’s in mA, more logic ^^.
So just need to remove the “/100”


