Examples of advanceNodeStage()


Examples of org.openhab.binding.zwave.internal.protocol.ZWaveNode.advanceNodeStage()

          if (commandClass != null)
            node.addCommandClass(commandClass);
        }

        // advance node stage.
        node.advanceNodeStage(NodeStage.MANSPEC01);
      }
     
      checkTransactionComplete(lastSentMessage, incomingMessage);

      // Treat the node information frame as a wakeup
View Full Code Here

Examples of org.openhab.binding.zwave.internal.protocol.ZWaveNode.advanceNodeStage()

      else {
        node.resetResendCount();
        // in case we received a ping response and the node is alive, we
        // proceed with the next node stage for this node.
        if (node.getNodeStage() == NodeStage.PING) {
          node.advanceNodeStage(NodeStage.DETAILS);
        }
      }
      checkTransactionComplete(lastSentMessage, incomingMessage);
      return true;
    case COMPLETE_NO_ACK:
View Full Code Here

Examples of org.openhab.binding.zwave.internal.protocol.ZWaveNode.advanceNodeStage()

      if (zwaveCommandClass != null)
        node.addCommandClass(zwaveCommandClass);
    }

      // advance node stage of the current node.
    node.advanceNodeStage(NodeStage.PING);
   
    checkTransactionComplete(lastSentMessage, incomingMessage);

    return false;
  }
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.