New topic for the expansion of the AUX commands on the Openwebnet 2.x protocol @massi .
I implemented, in part, the beta 8.
@massi I need the source files of your library 0.9.16 because I stopped (case SCS_AUX) here:
if (deviceType != null) {
switch (deviceType) {
case ZIGBEE_ON_OFF_SWITCH: {
thingTypeUID = OpenWebNetBindingConstants.THING_TYPE_ON_OFF_SWITCH;
thingLabel = OpenWebNetBindingConstants.THING_LABEL_ON_OFF_SWITCH;
break;
}
case ZIGBEE_DIMMER_SWITCH: {
thingTypeUID = OpenWebNetBindingConstants.THING_TYPE_DIMMER;
thingLabel = OpenWebNetBindingConstants.THING_LABEL_DIMMER;
break;
}
case SCS_ON_OFF_SWITCH: {
thingTypeUID = OpenWebNetBindingConstants.THING_TYPE_BUS_ON_OFF_SWITCH;
thingLabel = OpenWebNetBindingConstants.THING_LABEL_BUS_ON_OFF_SWITCH;
break;
}
case SCS_AUX: {
thingTypeUID = OpenWebNetBindingConstants.THING_TYPE_BUS_AUX;
thingLabel = OpenWebNetBindingConstants.THING_LABEL_BUS_AUX;
break;
}
case SCS_DIMMER_SWITCH: {