use of com.zsmartsystems.zigbee.dongle.ember.internal.ezsp.command.EzspGetParentChildParametersRequest in project com.zsmartsystems.zigbee by zsmartsystems.
the class EmberNcp method getChildParameters.
/**
* Returns information about the children of the local node and the parent of the local node.
*
* @return the {@link EzspGetParentChildParametersResponse}
*/
public EzspGetParentChildParametersResponse getChildParameters() {
EzspGetParentChildParametersRequest request = new EzspGetParentChildParametersRequest();
EzspTransaction transaction = ashHandler.sendEzspTransaction(new EzspSingleResponseTransaction(request, EzspGetParentChildParametersResponse.class));
EzspGetParentChildParametersResponse response = (EzspGetParentChildParametersResponse) transaction.getResponse();
lastStatus = null;
return response;
}
Aggregations