当前位置: 首页>>代码示例>>Java>>正文


Java BluetoothGatt.getService方法代码示例

本文整理汇总了Java中android.bluetooth.BluetoothGatt.getService方法的典型用法代码示例。如果您正苦于以下问题:Java BluetoothGatt.getService方法的具体用法?Java BluetoothGatt.getService怎么用?Java BluetoothGatt.getService使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在android.bluetooth.BluetoothGatt的用法示例。


在下文中一共展示了BluetoothGatt.getService方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: onServicesDiscovered

import android.bluetooth.BluetoothGatt; //导入方法依赖的package包/类
@Override
public void onServicesDiscovered(BluetoothGatt gatt, int status) {
    super.onServicesDiscovered(gatt, status);
    // CHECK 이 부분이 언제언제 불리는지 확인할 필요가 있다 잘못하면 매번 생성하는수가 있다.
    // 따라서 필수 체크
    if ( status == BluetoothGatt.GATT_SUCCESS ) {
        BluetoothGattService service = gatt.getService(ServiceUuidV2);
        if ( service != null )
        {
            mProtocolVer = 2;
            mConnectionThread = new ConnectedThread(mProtocolVer);
            mConnectionThread.start();
            initCharacteristic(mProtocolVer);
        }
        else {
            NLog.d("cannot find service");
            disconnect();
        }
    }
}
 
开发者ID:NeoSmartpen,项目名称:AndroidSDK2.0,代码行数:21,代码来源:BTLEAdt.java

示例2: obtenerCaracteristicasDescriptoresAccelGyroCC2650

import android.bluetooth.BluetoothGatt; //导入方法依赖的package包/类
private boolean obtenerCaracteristicasDescriptoresAccelGyroCC2650(BluetoothGatt gatt){
    boolean todoCorrecto = false;

    BluetoothGattService acelerometroService = gatt.getService(UUID_MOVEMENT_SERVICE);
    if(acelerometroService != null){
        this.movementCharacteristic = acelerometroService.getCharacteristic(UUID_MOVEMENT_DATA);
        this.movementConf = acelerometroService.getCharacteristic(UUID_MOVEMENT_CONF);
        this.movementPeriod = acelerometroService.getCharacteristic(UUID_MOVEMENT_PERIOD);

        if(movementCharacteristic != null && movementConf != null){
            this.config = movementCharacteristic.getDescriptor(UUID_CCC);
            todoCorrecto = true;
        }
    }

    return todoCorrecto;
}
 
开发者ID:TfgReconocimientoPulseras,项目名称:TrainAppTFG,代码行数:18,代码来源:BluetoothLeService.java

示例3: onServicesDiscovered

import android.bluetooth.BluetoothGatt; //导入方法依赖的package包/类
@Override
public void onServicesDiscovered(BluetoothGatt gatt, int status) {
    if (status == BluetoothGatt.GATT_SUCCESS) {
        boolean connected = false;

        BluetoothGattService service = gatt.getService(SERVICE_UUID);
        if (service != null) {
            BluetoothGattCharacteristic characteristic = service.getCharacteristic(CHARACTERISTIC_COUNTER_UUID);
            if (characteristic != null) {
                gatt.setCharacteristicNotification(characteristic, true);

                BluetoothGattDescriptor descriptor = characteristic.getDescriptor(DESCRIPTOR_CONFIG);
                if (descriptor != null) {
                    descriptor.setValue(BluetoothGattDescriptor.ENABLE_NOTIFICATION_VALUE);
                    connected = gatt.writeDescriptor(descriptor);
                }
            }
        }
        mListener.onConnected(connected);
    } else {
        Log.w(TAG, "onServicesDiscovered received: " + status);
    }
}
 
开发者ID:Nilhcem,项目名称:blefun-androidthings,代码行数:24,代码来源:GattClient.java

示例4: initGatt

import android.bluetooth.BluetoothGatt; //导入方法依赖的package包/类
@Override
	protected Queue<BleManager.Request> initGatt(final BluetoothGatt gatt) {
		final BluetoothGattService service = gatt.getService(UART_SERVICE_UUID);
		mTXCharacteristic = service.getCharacteristic(UART_TX_CHARACTERISTIC_UUID);
		mRXCharacteristic = service.getCharacteristic(UART_RX_CHARACTERISTIC_UUID);

		final int rxProperties = mRXCharacteristic.getProperties();
		boolean writeRequest = (rxProperties & BluetoothGattCharacteristic.PROPERTY_WRITE) > 0;

		// Set the WRITE REQUEST type when the characteristic supports it. This will allow to send long write (also if the characteristic support it).
		// In case there is no WRITE REQUEST property, this manager will divide texts longer then 20 bytes into up to 20 bytes chunks.
		if (writeRequest)
			mRXCharacteristic.setWriteType(BluetoothGattCharacteristic.WRITE_TYPE_DEFAULT);

		// We don't want to enable notifications on TX characteristic as we are not showing them here. A watch may be just used to send data. At least now.
//		final LinkedList<BleManager.Request> requests = new LinkedList<>();
//		requests.push(BleManager.Request.newEnableNotificationsRequest(mTXCharacteristic));
//		return requests;
		return null;
	}
 
开发者ID:runtimeco,项目名称:Android-DFU-App,代码行数:21,代码来源:UARTProfile.java

示例5: isRequiredServiceSupported

import android.bluetooth.BluetoothGatt; //导入方法依赖的package包/类
@Override
public boolean isRequiredServiceSupported(final BluetoothGatt gatt) {
	final BluetoothGattService service = gatt.getService(UART_SERVICE_UUID);
	if (service != null) {
		mRXCharacteristic = service.getCharacteristic(UART_RX_CHARACTERISTIC_UUID);
		mTXCharacteristic = service.getCharacteristic(UART_TX_CHARACTERISTIC_UUID);
	}

	boolean writeRequest = false;
	boolean writeCommand = false;
	if (mRXCharacteristic != null) {
		final int rxProperties = mRXCharacteristic.getProperties();
		writeRequest = (rxProperties & BluetoothGattCharacteristic.PROPERTY_WRITE) > 0;
		writeCommand = (rxProperties & BluetoothGattCharacteristic.PROPERTY_WRITE_NO_RESPONSE) > 0;

		// Set the WRITE REQUEST type when the characteristic supports it. This will allow to send long write (also if the characteristic support it).
		// In case there is no WRITE REQUEST property, this manager will divide texts longer then 20 bytes into up to 20 bytes chunks.
		if (writeRequest)
			mRXCharacteristic.setWriteType(BluetoothGattCharacteristic.WRITE_TYPE_DEFAULT);
	}

	return mRXCharacteristic != null && mTXCharacteristic != null && (writeRequest || writeCommand);
}
 
开发者ID:runtimeco,项目名称:Android-DFU-App,代码行数:24,代码来源:UARTManager.java

示例6: getService

import android.bluetooth.BluetoothGatt; //导入方法依赖的package包/类
public BluetoothGattService getService(String mBleAddress, UUID uuidLedServ) {
    BluetoothGattService gattService = null;
    BluetoothGatt bluetoothGatt = checkAndGetGattItem(mBleAddress);
    if (bluetoothGatt != null) {
        gattService = bluetoothGatt.getService(uuidLedServ);
    }
    return gattService;
}
 
开发者ID:UDOOboard,项目名称:UDOOBluLib-android,代码行数:9,代码来源:UdooBluService.java

示例7: isOptionalServiceSupported

import android.bluetooth.BluetoothGatt; //导入方法依赖的package包/类
@Override
protected boolean isOptionalServiceSupported(final BluetoothGatt gatt) {
	final BluetoothGattService iaService = gatt.getService(IMMEDIATE_ALERT_SERVICE_UUID);
	if (iaService != null) {
		mAlertLevelCharacteristic = iaService.getCharacteristic(ALERT_LEVEL_CHARACTERISTIC_UUID);
	}
	return mAlertLevelCharacteristic != null;
}
 
开发者ID:runtimeco,项目名称:Android-DFU-App,代码行数:9,代码来源:ProximityManager.java

示例8: onDescriptorWrite

import android.bluetooth.BluetoothGatt; //导入方法依赖的package包/类
/**
 * Callback indicating the result of a descriptor write operation.
 *
 * @param gatt       GATT client invoked {@link BluetoothGatt#writeDescriptor}
 * @param descriptor Descriptor that was writte to the associated
 *                   remote device.
 * @param status     The result of the write operation
 *                   {@link BluetoothGatt#GATT_SUCCESS} if the operation succeeds.
 */
@Override
public void onDescriptorWrite(BluetoothGatt gatt, BluetoothGattDescriptor descriptor, int status) {
    super.onDescriptorWrite(gatt, descriptor, status);

    // boolean indicating whether or not the next step is successful, default is false
    boolean success = false;

    // Check if writing descriptor was successful and force the action notification if it
    // was
    if (status == BluetoothGatt.GATT_SUCCESS) {
        // Check if the SPIN Service is found
        final BluetoothGattService spinService = gatt.getService(SPIN_SERVICE_UUID);
        if (spinService != null) {
            // Check if the Command Characteristic is found, write the new value and store
            // the result
            final BluetoothGattCharacteristic commandCharacteristic
                    = spinService.getCharacteristic(COMMAND_CHARACTERISTIC_UUID);
            if (commandCharacteristic != null) {
                // Set the value to 0x0801
                commandCharacteristic.setValue(
                        new byte[]{
                                (byte) 0x08,    // commandId = force action notification (8)
                                (byte) 0x01     // enable = false (0) or true (1)
                        }
                );

                success = gatt.writeCharacteristic(commandCharacteristic);
            }
        }
    }

    onStep(gatt, success);
}
 
开发者ID:SPINremote,项目名称:sdc-1-quickstart-android,代码行数:43,代码来源:MainActivity.java

示例9: getCharacteristic

import android.bluetooth.BluetoothGatt; //导入方法依赖的package包/类
/**
 * 根据service, character , 获取character
 * @param gatt
 * @param serviceUUID
 * @param charactUUID
 * @return
 */
public static BluetoothGattCharacteristic getCharacteristic(BluetoothGatt gatt, String serviceUUID, String charactUUID) {
    BluetoothGattService service = gatt.getService(UUID.fromString(serviceUUID));
    if (service != null) {
        return service.getCharacteristic(UUID.fromString(charactUUID));
    }
    return null;
}
 
开发者ID:qiu-yongheng,项目名称:Bluetooth_BLE,代码行数:15,代码来源:BluetoothUtil.java

示例10: isRequiredServiceSupported

import android.bluetooth.BluetoothGatt; //导入方法依赖的package包/类
@Override
protected boolean isRequiredServiceSupported(final BluetoothGatt gatt) {
	BluetoothGattService service = gatt.getService(BP_SERVICE_UUID);
	if (service != null) {
		mBPMCharacteristic = service.getCharacteristic(BPM_CHARACTERISTIC_UUID);
		mICPCharacteristic = service.getCharacteristic(ICP_CHARACTERISTIC_UUID);
	}
	return mBPMCharacteristic != null;
}
 
开发者ID:runtimeco,项目名称:Android-DFU-App,代码行数:10,代码来源:BPMManager.java

示例11: isRequiredServiceSupported

import android.bluetooth.BluetoothGatt; //导入方法依赖的package包/类
@Override
public boolean isRequiredServiceSupported(final BluetoothGatt gatt) {
	final BluetoothGattService service = gatt.getService(GLS_SERVICE_UUID);
	if (service != null) {
		mGlucoseMeasurementCharacteristic = service.getCharacteristic(GM_CHARACTERISTIC);
		mGlucoseMeasurementContextCharacteristic = service.getCharacteristic(GM_CONTEXT_CHARACTERISTIC);
		mRecordAccessControlPointCharacteristic = service.getCharacteristic(RACP_CHARACTERISTIC);
	}
	return mGlucoseMeasurementCharacteristic != null && mRecordAccessControlPointCharacteristic != null;
}
 
开发者ID:runtimeco,项目名称:Android-DFU-App,代码行数:11,代码来源:GlucoseManager.java

示例12: isRequiredServiceSupported

import android.bluetooth.BluetoothGatt; //导入方法依赖的package包/类
@Override
protected boolean isRequiredServiceSupported(final BluetoothGatt gatt) {
	final BluetoothGattService service = gatt.getService(HT_SERVICE_UUID);
	if (service != null) {
		mHTCharacteristic = service.getCharacteristic(HT_MEASUREMENT_CHARACTERISTIC_UUID);
	}
	return mHTCharacteristic != null;
}
 
开发者ID:runtimeco,项目名称:Android-DFU-App,代码行数:9,代码来源:HTSManager.java

示例13: getCharacteristic

import android.bluetooth.BluetoothGatt; //导入方法依赖的package包/类
private BluetoothGattCharacteristic getCharacteristic(
    @NonNull BluetoothGatt bluetoothgatt,
    @NonNull UUID serviceUuid,
    @NonNull UUID characteristicUuid
) {
  BluetoothGattService service = bluetoothgatt.getService(serviceUuid);
  if (service != null)
    return service.getCharacteristic(characteristicUuid);
  return null;
}
 
开发者ID:drfonfon,项目名称:ITagAntiLost,代码行数:11,代码来源:BleService.java

示例14: isRequiredServiceSupported

import android.bluetooth.BluetoothGatt; //导入方法依赖的package包/类
@Override
public boolean isRequiredServiceSupported(final BluetoothGatt gatt) {
	final BluetoothGattService service = gatt.getService(CYCLING_SPEED_AND_CADENCE_SERVICE_UUID);
	if (service != null) {
		mCSCMeasurementCharacteristic = service.getCharacteristic(CSC_MEASUREMENT_CHARACTERISTIC_UUID);
	}
	return mCSCMeasurementCharacteristic != null;
}
 
开发者ID:runtimeco,项目名称:Android-DFU-App,代码行数:9,代码来源:CSCManager.java

示例15: setBatteryNotifications

import android.bluetooth.BluetoothGatt; //导入方法依赖的package包/类
/**
 * This method tries to enable notifications on the Battery Level characteristic.
 *
 * @param enable <code>true</code> to enable battery notifications, false to disable
 * @return true if request has been sent
 */
public boolean setBatteryNotifications(final boolean enable) {
	final BluetoothGatt gatt = mBluetoothGatt;
	if (gatt == null) {
		return false;
	}

	final BluetoothGattService batteryService = gatt.getService(BATTERY_SERVICE);
	if (batteryService == null)
		return false;

	final BluetoothGattCharacteristic batteryLevelCharacteristic = batteryService.getCharacteristic(BATTERY_LEVEL_CHARACTERISTIC);
	if (batteryLevelCharacteristic == null)
		return false;

	// Check characteristic property
	final int properties = batteryLevelCharacteristic.getProperties();
	if ((properties & BluetoothGattCharacteristic.PROPERTY_NOTIFY) == 0)
		return false;

	gatt.setCharacteristicNotification(batteryLevelCharacteristic, enable);
	final BluetoothGattDescriptor descriptor = batteryLevelCharacteristic.getDescriptor(CLIENT_CHARACTERISTIC_CONFIG_DESCRIPTOR_UUID);
	if (descriptor != null) {
		if (enable) {
			descriptor.setValue(BluetoothGattDescriptor.ENABLE_NOTIFICATION_VALUE);
			Logger.a(mLogSession, "Enabling battery level notifications...");
			Logger.v(mLogSession, "Enabling notifications for " + BATTERY_LEVEL_CHARACTERISTIC);
			Logger.d(mLogSession, "gatt.writeDescriptor(" + CLIENT_CHARACTERISTIC_CONFIG_DESCRIPTOR_UUID + ", value=0x01-00)");
		} else {
			descriptor.setValue(BluetoothGattDescriptor.DISABLE_NOTIFICATION_VALUE);
			Logger.a(mLogSession, "Disabling battery level notifications...");
			Logger.v(mLogSession, "Disabling notifications for " + BATTERY_LEVEL_CHARACTERISTIC);
			Logger.d(mLogSession, "gatt.writeDescriptor(" + CLIENT_CHARACTERISTIC_CONFIG_DESCRIPTOR_UUID + ", value=0x00-00)");
		}
		return gatt.writeDescriptor(descriptor);
	}
	return false;
}
 
开发者ID:runtimeco,项目名称:Android-DFU-App,代码行数:44,代码来源:BleManager.java


注:本文中的android.bluetooth.BluetoothGatt.getService方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。