Examples of DmxSwitchItem


Examples of org.openhab.binding.dmx.internal.config.DmxSwitchItem

    if (item instanceof ColorItem) {
      itemBinding = new DmxColorItem(item.getName(), config, this);
    } else if (item instanceof DimmerItem) {
      itemBinding = new DmxDimmerItem(item.getName(), config, this);
    } else if (item instanceof SwitchItem) {
      itemBinding = new DmxSwitchItem(item.getName(), config, this);
    } else {
      throw new BindingConfigParseException("Unsupported item type "
          + item.getClass().getSimpleName());
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.