在我的项目中,我使用与我的iPhone连接的BLE外围设备。当我超出最大连接距离时,通信断开,然后我回来,通信连接。但重新连接后,特性无法写入数据!似乎特征是零,但服务不是零。我必须再次运行我的应用程序,以便特性可以正常写入数据。剂量任何人都有相同的情况,或任何想法?等待帮助。
-(void) writeCharacteristicValue:(int )value forCharacteristic:(CBCharacteristic *)charateristic type:(CBCharacteristicWriteType ) type
{
NSLog(@"writeCharacteristicValue");
NSData *data = nil;
u8 val = value;
if (nil == servicePeripheral)
{
NSLog(@"Not connected to a peripheral");
return ;
}
if (nil == charateristic)
{
NSLog(@"No valid characteristic");
return;
}
data = [NSData dataWithBytes:&val length:sizeof (val)];
[servicePeripheral writeValue:data forCharacteristic: charateristic type:type];
NSLog(@"dataWithBytes value %d",val);
}
CoreBluetooth[WARNING] <CBConcreteCharacteristic: 0x1ed5f1c0> is not a valid characteristic for peripheral <CBConcretePeripheral: 0x20002520 UUID = <CFUUID 0x20078a60> BE196610-C2A1-5D22-3E71-6851718F9672, Name = "Finder", IsConnected = YES>
有时NSLog“没有有效特征”,所以我认为特征是零。
答案 0 :(得分:1)
问题解决了! 我将连接的服务放在NSMutableArray中,当外围设备断开连接时,我无法从连接服务阵列中删除该服务。所以下次我从数组中获取服务时,它会返回已发布的错误服务。 现在,我更改了我的代码并及时删除了断开连接的服务。它运作良好!