Package org.openhab.binding.fritzaha.internal.hardware.interfaces.FritzahaOutletMeter

Examples of org.openhab.binding.fritzaha.internal.hardware.interfaces.FritzahaOutletMeter.TimeDef


  @Override
  public void processBindingConfiguration(String context, Item item, String bindingConfig)
      throws BindingConfigParseException {
    super.processBindingConfiguration(context, item, bindingConfig);
    FritzahaDevice config = null;
    TimeDef timedef = null;
    String[] configParts = bindingConfig.trim().split(",");
    if (configParts.length < 2) {
      throw new BindingConfigParseException("FritzAHA items must start with <hostID>,<deviceID/AIN>");
    }
    if (item instanceof SwitchItem) {
View Full Code Here

TOP

Related Classes of org.openhab.binding.fritzaha.internal.hardware.interfaces.FritzahaOutletMeter.TimeDef

Copyright © 2018 www.massapicom. 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.