有些设备,在 onServicesDiscovered 回调中,返回的 status 是 129,133时,在关闭,重新打开蓝牙,无法解决问题时,建议更换设备,这些问题大多是设备底层gatt 服务异常,重新连接,进行discoverServices(); 1//出现129,133时。关闭蓝牙2mBluetoothAdapter.disable();3//关闭蓝牙后,延时1s,重新开启蓝牙4mBluetoothAdapter.enable...
I am facing the ble status = 133 in android BluetoothGatt . the log follow: D/BluetoothGatt(16840): connect() - device: F0:13:C3:80:AA:C6, auto: false D/BluetoothGatt(16840): registerApp() D/BluetoothGatt(16840): registerApp() - UUID=653...
status);mBluetoothGatt=gatt;if(status==BluetoothGatt.GATT_SUCCESS){Log.d(TAG,"onServicesDiscovered. status = "+status);//UUID serviceUuid = UUID.fromString("00001800-0000-1000-8000-00805f9b34fb");BluetoothGattServiceservice=gatt.getService(mServiceUuid);if(BuildConfig.DEBUG)Log.d(TAG...
3、进行BLE的基本操作导致BLE Crash问题 4、关于不断连接BLE的时候,底层报错status =133的问题 复现方法:不断地disconnect 和 connect 补充说明:连接BLE,假如BLE已经connect到另外的设备,这个时候status 133,是正常现象,但是我们的平板发生的概率很大 5、在蓝牙已经打开的状态下,开启蓝牙扫描的时候,getBluetoothLeScanne...
When I connect ble after I try to open the notification, but often return BleGattException status = 133, sometimes it will sometimes not . this is my code , i set it after 500 ms open notify: mConnectingDevice.establishConnection(false) ...
有时候,我们会遇到 status == 133 的情况,根据网上大部分人的说法,这是因为 Android 最多支持连接6到7 个左右的蓝牙设备,如果超出了这个数量就无法再连接了。所以当我们断开蓝牙设备的连接时,还必须调用 BluetoothGatt#close 方法释放连接资源。否则,在多次尝试连接蓝牙设备之后很快就会超出这一个限制,导致出现这一...
descriptor.setValue(BluetoothGattDescriptor.ENABLE_NOTIFICATION_VALUE);//若开启监听成功则会回调BluetoothGattCallback中的onDescriptorWrite()方法,处理方式如下:@OverridepublicvoidonDescriptorWrite(BluetoothGatt gatt, BluetoothGattDescriptor descriptor,intstatus){if(status == BluetoothGatt.GATT_SUCCESS) {//开启监...
public void onConnectionStateChange(BluetoothGatt gatt, int status, int newState) { //gatt:GATT客户端 //status:此次操作的状态码,返回0时代表操作成功,返回其他值就是各种异常 //newState:当前连接处于的状态,例如连接成功,断开连接等 //当连接状态改变时触发此回调 ...
i(TAG, "onConnectionStateChange status: " + status + ", newState: " + newState); /** * 手机(主机)主动断开连接回调值有:status: 0, newState: 0 * 发起Gatt操作失败回调值有:status: 133, newState: 0 * 设备(从机)主动断开连接回调值有:status: 8, newState: 0 * ... */ if (new...
请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/...