美文网首页
程序员日记20241217

程序员日记20241217

作者: 张晓刚_云字节 | 来源:发表于2024-12-17 20:44 被阅读0次

Android

  • 安卓下的BLE 如果订阅数据的话,除了要设置setCharacteristicNotificationtrue,另外必须要启用CCC Descriptor,以下是UTS代码示例(非kotlin代码):

    // 此处的00002902-0000-1000-8000-00805f9b34fb是固定值
    let descriptor = characteristic.getDescriptor(UUID.fromString("00002902-0000-1000-8000-00805f9b34fb"))
    if (descriptor != null) {
      console.log("CCC Descriptor")
      descriptor.value = BluetoothGattDescriptor.ENABLE_NOTIFICATION_VALUE
      bluetoothGatt?.writeDescriptor(descriptor)
      bluetoothGatt?.setCharacteristicNotification(characteristic, true)
    }
    

Astro

  • 博客直接加入百度统计代码,会有TS语法提示错误,可以通过@ts-ignore避免此问题

      // @ts-ignore
       var _hmt: any[] = _hmt || [];
    

其他

  • 偶然间翻了一下自己51CTO的博客 十几年前更新的文章,没想到人气还算不错的,如果坚持下去,可能应该会是头部的作者了吧,可惜事实是没有如果。。

相关文章

网友评论

      本文标题:程序员日记20241217

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