Z-Uno 2 Sensor Device Channels Not Created Properly
Posted: 05 Jan 2022 04:58
I love the new Z-Uno device and am excited to be working with it.
I am having trouble creating channels for the board however. The sketch that I used with the Gen 5 (older) board doesn't seem to create the same
Z-Wave device channels on the new Gen 7 board.
Here is the code that I used to set up my channels on the original Z-Uno board:
Here is the raw controller configuration for the above channels that worked CORRECTLY:
The same setup macro code when run with the new Gen 7 board produces this INCORRECTLY:
In addition to the new Z-Uno Gen 7 board missing one of the device channels:Also, the parameters on the Gen 7 for the three sensors that DID show up don't seem right.
Not sure what is happening but the only clue that I have is that my controller is a Aeotec Gen 5 Z-Stick. Is it possible that the new Z-Uno board won't respond properly on configuration with a Gen 5 controller? I thought Gen 7 and Gen 5 was backwardly compatible.
I will try to obtain a Gen 7 controller but they don't seem to be widely available yet.
Thanks for any advice or assistance anyone has on this.
I am having trouble creating channels for the board however. The sketch that I used with the Gen 5 (older) board doesn't seem to create the same
Z-Wave device channels on the new Gen 7 board.
Here is the code that I used to set up my channels on the original Z-Uno board:
Code: Select all
// set up channels
ZUNO_SETUP_CHANNELS(
// ZUNO_SENSOR_MULTILEVEL_TEMPERATURE(getterTemperature), // not used
ZUNO_SWITCH_BINARY(getterMasterEnable, setterMasterEnable), // this is channel 1: the master enable switch
ZUNO_SENSOR_MULTILEVEL_HUMIDITY(getterHumidity), // this is channel 2: the DHT22 device sensor for the ambient humidity
ZUNO_SWITCH_MULTILEVEL(getterDehumid, setterDehumid), // this is channel 3: the slider to set the target dehumidity level
ZUNO_SENSOR_BINARY(ZUNO_SENSOR_BINARY_TYPE_GENERAL_PURPOSE, getterRelayEnable) // this is channel 4: sensor to pass the value of the dehumidifer relay
);
Code: Select all
ZUNO_SENSOR_BINARY_TYPE_GENERAL_PURPOSE
Not sure what is happening but the only clue that I have is that my controller is a Aeotec Gen 5 Z-Stick. Is it possible that the new Z-Uno board won't respond properly on configuration with a Gen 5 controller? I thought Gen 7 and Gen 5 was backwardly compatible.
I will try to obtain a Gen 7 controller but they don't seem to be widely available yet.
Thanks for any advice or assistance anyone has on this.