1、指令的发送
初始化待发送的指令数据
let bytes: [UInt8] = [0x01, 0x02, 0x03, 0x04, 0x05]
将字节数组转化为 Data 数据
let byteData: Data = Data.init(bytes: bytes)
发送数据
peripheral.writeValue(byteData, for: characteristic, type: .withResponse)
2、指令的接收
将接收到的 Data 数据转为字节数组
let bytes: [UInt8]? = [UInt8](responseData)
根据字节数组的值处理业务逻辑
略~
网友评论