Page 1 of 1

Electricity (Instant+Counter) not showing Power

Posted: Saturday 01 February 2025 11:28
by Aziona
I have a dummy device from type Electricity (Instant+Counter). If I send the URL below to the device, it only shows the energy under Today: 0.040 KwH but the Power remains 0 Watt. What am I doing wrong? (Type = Usage and Energy read = From Device)

Code: Select all

http://192.168.178.106:8088/json.htm?type=command&param=udevice&idx=2048&nvalue=0&svalue="123;40"

Re: Electricity (Instant+Counter) not showing Power

Posted: Saturday 01 February 2025 11:50
by waltervl
Drop the quotes around svalue values eg

Code: Select all

http://192.168.178.106:8088/json.htm?type=command&param=udevice&idx=2048&nvalue=0&svalue=123;40

Re: Electricity (Instant+Counter) not showing Power

Posted: Saturday 01 February 2025 12:56
by Aziona
You're a king! Thanks. Some things are so simple that one just not dare to think of it.