作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的 CoreBluetooth 应用程序需要在客户端特征配置描述符中启用“指示位”。这是我所做的:
discoverServices
discoverCharacteristics
在回调里面discoverDescriptorsForCharacteristic
内部回调 if ( [[descriptor.UUID representativeString] isEqualToString:@"2902" ] )
{
const unsigned char raw_data[] = {0x02};
NSData *myData = [NSData dataWithBytes: raw_data length: 2];
[self.cBCP writeValue:myData forDescriptor:descriptor];
}
writeVale
中崩溃了:。控制台中的错误消息是:
Cannot write Client Characteristic Configuration descriptors using this method!
最佳答案
很老的问题,但由于没有回答,似乎方法 setNotifyValue(_:for:)
将为您处理,这取决于以下特性:
关于ios5 - CoreBluetooth writeValue :forDescriptor: issue,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13561136/
我的 CoreBluetooth 应用程序需要在客户端特征配置描述符中启用“指示位”。这是我所做的: 开始扫描 开始连接设备 调用 discoverServices 调用 discoverCharac
在与 TI BLE Keyfob 建立连接并检索特征描述符后,我尝试调用 [peripheral writeValue: nsData forDescriptor: descriptor]; 各
我是一名优秀的程序员,十分优秀!