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

Examples of org.openhab.binding.homematic.internal.communicator.RemoteControlOptionParser


   * {@inheritDoc}
   */
  public void setRemoteControlDisplay(String remoteControlAddress, String text, String options)
      throws HomematicClientException {

    RemoteControlOptionParser rcParameterParser = new RemoteControlOptionParser();
    HmRemoteControlOptions rco = rcParameterParser.parse(remoteControlAddress, options);
    rco.setText(text);

    logger.debug("Sending to remote control {}: {}", remoteControlAddress, rco);

    String address = remoteControlAddress + ":18";
View Full Code Here

TOP

Related Classes of org.openhab.binding.homematic.internal.communicator.RemoteControlOptionParser

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.