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.