Examples of incrementReceiveCount()


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

      node.setAlive();
      logger.debug("NODE {}: Node has risen from the DEAD. Set stage to {}.", nodeId, node.getNodeStage());     
    }
   
    node.resetResendCount();
    node.incrementReceiveCount();
   
    int commandClassCode = incomingMessage.getMessagePayloadByte(3);
    CommandClass commandClass = CommandClass.getCommandClass(commandClassCode);

    if (commandClass == null) {
View Full Code Here

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

      ZWaveNode node = zController.getNode(originalMessage.getMessageNode());
      if(node == null)
        break;
     
      // Consider this as a received frame since the controller did receive an ACK from the device.
      node.incrementReceiveCount();

      // If the node is DEAD, but we've just received a message from it, then it's not dead!
      if(node.isDead()) {
        node.setAlive();
        logger.debug("NODE {}: Node has risen from the DEAD. Set stage to {}.", node.getNodeId(), node.getNodeStage());     
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.