Zuno 2 - Meter electric scales issue

Discussion about Z-Uno product. Visit http://z-uno.z-wave.me for more details.
niky94547
Posts: 18
Joined: 31 May 2019 10:51

Re: Zuno 2 - Meter electric scales issue

Post by niky94547 »

PoltoS wrote:
24 May 2023 02:44
We found a bug in Z-Way that made some features of Meter not available in the last channel. This will be released soon.
Thanks for the update. I'll follow release and test. Just for reference, if commented row19 within meter.c:

if (paket == 0x0 || (len = paket->len) == sizeof(ZW_METER_GET_FRAME)) {
// len = sizeof(ZW_METER_GET_FRAME);
}

Unsolicited reports on Z-way become ok for all scales. Actually affected ones was (Amp, Volt and PF only), nevertheless they are last channel or not.

Tested on Z-way 4.1.0, S2 inclusion, Zuno 3.1.0.

On unsecure inclusion there is interview issue on all electric scales except KWh:

ZWay - img
Last edited by niky94547 on 07 Jun 2023 19:25, edited 1 time in total.
niky94547
Posts: 18
Joined: 31 May 2019 10:51

Re: Zuno 2 - Meter electric scales issue

Post by niky94547 »

niom wrote:
24 May 2023 10:50
Might be related to this issue.

If I setup 4 channels like this

Code: Select all

ZUNO_SETUP_CHANNELS(

 ZUNO_SWITCH_BINARY(getterSwitch, setterSwitch),
 ZUNO_SENSOR_BINARY(ZUNO_SENSOR_BINARY_WATER, floodSensor),
  
 ZUNO_METER(ZUNO_METER_TYPE_WATER, METER_RESET_ENABLE, ZUNO_METER_WATER_SCALE_METERS3, METER_SIZE_FOUR_BYTES, METER_PRECISION_THREE_DECIMALS, getterCold, resetterCold),
                    ZUNO_METER(ZUNO_METER_TYPE_WATER, METER_RESET_ENABLE, ZUNO_METER_WATER_SCALE_METERS3, METER_SIZE_FOUR_BYTES, METER_PRECISION_THREE_DECIMALS, getterHot, resetterHot)
    );
So the order is binary_switch, binary_sensor, water_meter1, water_meter2. And in this order if I include it in HC3 it inludes it but leaves it in "not configured" state.

If I change order of these channels to water_meter1,water_meter2, binary_sensor, binary_switch. It includes Z-UNO and configures it correctly.


Seems that this is a ZUNO_METERs macro problem.
Hi, Try macro below if you include device unsecurely on HC3 (Z-Wave engine 2.0). In our case it's solve issue with not configure state when included device unsecurely:

ZUNO_DISABLE (MODERN_MULTICHANNEL_S2_ALWAYS);
Post Reply