美文网首页
Swift 蓝牙十六进制指令的发送与接收

Swift 蓝牙十六进制指令的发送与接收

作者: henu_Larva | 来源:发表于2018-09-30 13:38 被阅读50次

    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)
    

    根据字节数组的值处理业务逻辑

    略~
    

    相关文章

      网友评论

          本文标题:Swift 蓝牙十六进制指令的发送与接收

          本文链接:https://www.haomeiwen.com/subject/nllwoftx.html