Package org.openhab.binding.homematic.internal.communicator.client

Examples of org.openhab.binding.homematic.internal.communicator.client.HomematicClientException


   */
  private String[] getSymbols() throws HomematicClientException {
    DatapointConfig dpConfig = new DatapointConfig(remoteControlAddress, "18", "SUBMIT");
    HmDatapoint rcDatapoint = (HmDatapoint) context.getStateHolder().getState(dpConfig);
    if (rcDatapoint == null) {
      throw new HomematicClientException("Address " + remoteControlAddress
          + " is not a Homematic remote control with a display");
    }

    List<String> symbols = new ArrayList<String>();
    for (HmDatapoint datapoint : rcDatapoint.getChannel().getDatapoints()) {
View Full Code Here

TOP

Related Classes of org.openhab.binding.homematic.internal.communicator.client.HomematicClientException

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.