gpt4 book ai didi

IOS核心蓝牙: Writing NSData for Characteristic

转载 作者:可可西里 更新时间:2023-11-01 06:21:32 24 4
gpt4 key购买 nike

我正在使用以下代码为使用 IOS 核心蓝牙的蓝牙特性(重置设备)写入 0xDE 值:

...
NSData *bytes = [@"0xDE" dataUsingEncoding:NSUTF8StringEncoding];
[peripheral writeValue:bytes
forCharacteristic:characteristic
type:CBCharacteristicWriteWithResponse];
...

我的代码中是否有错误,因为值没有写好?

最佳答案

Swift 3.0:如果有人想知道 Swift 的格式略有不同,因为 writeValue 可以从数组中获取计数。

let value: UInt8 = 0xDE
let data = Data(bytes: [value])
peripheral.writeValue(data, for: characteristic, type: .withResponse)

关于IOS核心蓝牙: Writing NSData for Characteristic,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32906324/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com