Package de.quist.samy.remocon

Examples of de.quist.samy.remocon.RemoteSession


   * @param cmd
   *            Command to send
   */
  public void send(final String cmd) {
   
    RemoteSession remoteController = null;
   
    try {
      remoteController = RemoteSession.create("openHAB", "openHAB", ip, port);
     
      Key key = Key.valueOf(cmd);
      logger.debug("Try to send command: {}", cmd);
     
      remoteController.sendKey(key);

    } catch (Exception e) {
      logger.error("Could not send command to device on {}: {}", ip + ":" + port, e);
    }
   
View Full Code Here

TOP

Related Classes of de.quist.samy.remocon.RemoteSession

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.