Back to project page BLEService.
The source code is released under:
Copyright (c) 2014, Ratio LLC. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: ...
If you think the Android project BLEService listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.ratio.deviceService.command; //from www .j a v a 2 s . c om import android.bluetooth.BluetoothGattCharacteristic; import android.util.Log; import com.ratio.deviceService.BTLEDeviceManager; import com.ratio.exceptions.DeviceManagerException; /** * Queued command to read a character from the BTLE device */ public class BTLECommandDiscoverServices extends BTLECommand { public BTLECommandDiscoverServices(BTLEDeviceManager.BTDeviceInfo deviceInfo) { super(deviceInfo); } public boolean execute(BTLEDeviceManager deviceManager) throws DeviceManagerException { boolean fSuccess = mDeviceInfo.getGatt().discoverServices(); Log.i(TAG, "Attempting to start service discovery:" + fSuccess); return fSuccess; } public String toString() { return BTLECommandDiscoverServices.class.getSimpleName() + " addr: " + mDeviceInfo.getDeviceAddress(); } }