use of org.eclipse.smarthome.binding.bluetooth.bluegiga.internal.command.gap.BlueGigaEndProcedureCommand in project smarthome by eclipse.
the class BlueGigaBridgeHandler method bgStopProcedure.
/*
* The following methods are private methods for handling the BlueGiga protocol
*/
private boolean bgStopProcedure() {
BlueGigaCommand command = new BlueGigaEndProcedureCommand();
BlueGigaEndProcedureResponse response = (BlueGigaEndProcedureResponse) getBgHandler().sendTransaction(command);
return response.getResult() == BgApiResponse.SUCCESS;
}
Aggregations