use of com.zsmartsystems.zigbee.dongle.conbee.internal.frame.ConBeeDeviceStateRequest in project com.zsmartsystems.zigbee by zsmartsystems.
the class ZigBeeDongleConBee method startup.
@Override
public boolean startup(boolean reinitialize) {
logger.debug("ConBee transport startup");
ConBeeDeviceStateRequest stateRequest = new ConBeeDeviceStateRequest();
ConBeeDeviceStateResponse stateResponse = (ConBeeDeviceStateResponse) conbeeHandler.sendTransaction(new ConBeeSingleResponseTransaction(stateRequest, ConBeeDeviceStateResponse.class)).getResponse();
stateResponse.getDeviceState();
return true;
}
Aggregations