-(void)peripheral:(CBPeripheral *)peripheral didUpdateValueForCharacteristic:(CBCharacteristic *)characteristic error:(NSError *)error
{
dispatch_async(dispatch_get_main_queue(), ^{
NSData *data = characteristic.value;
uint8_t *array = (uint8_t*) data.bytes;
cadenceValue = [CharacteristicReader readUInt8Value:&array];
self.cadence.text = [NSString stringWithFormat:@"%d", cadenceValue];
});
}
如何在swift 2中从bLE(蓝牙低功耗)设备获取节奏。我无法为此找到确切的代码。为此调用了委托方法。didUpdateValueForCharacteristic
我有一个 nRF Toolbox 的代码,但它在目标 c或swift 3中,但我的项目在swift 2中。我尝试使用桥接头调用目标 c 方法,但它总是返回 0 节奏。