随笔分类 -  ble 蓝牙/android BT

【转】Android 6.0获取MAC地址
只有注册用户登录后才能阅读该文。

posted @ 2016-11-04 13:11 wi100sh 阅读(3) 评论(0) 推荐(0) 编辑

【转】蓝牙物理链路类型:SCO和ACL链路
摘要:原文网址:http://blog.chinaunix.net/uid-23193900-id-3272233.html 阅读全文

posted @ 2016-03-16 13:30 wi100sh 阅读(4404) 评论(2) 推荐(0) 编辑

【转】Android低功耗蓝牙应用开发获取的服务UUID
摘要:原文网址:http://blog.csdn.net/zhangjs0322/article/details/39048939 Android低功耗蓝牙应用程序开始时获取到的蓝牙血压计所有服务的UUID如下所示: 08-28 09:05:48.488: D/BluetoothGatt(4251): o 阅读全文

posted @ 2016-02-14 13:48 wi100sh 阅读(2280) 评论(0) 推荐(0) 编辑

【转】蓝牙通信-打开和关闭蓝牙设备
摘要:原文网址:http://www.2cto.com/kf/201303/199175.html蓝牙(BlueTooth)要求的最低版本是android2.0,由于Android模拟器不支持蓝牙,运行蓝牙的有关应用必须在真机上测试运行。蓝牙是一种重要的短距离无线通信协议,广泛应用于各种设备(手机,医疗,... 阅读全文

posted @ 2015-11-26 22:46 wi100sh 阅读(673) 评论(0) 推荐(0) 编辑

【转】android 4.3 BLE onCharacteristicWrite没有回调
摘要:原文网址:http://bbs.csdn.net/topics/390882717?page=1问题1.我在自己程序有开一个Timer定时去readCharacteristic,每次read可以成功,但是在此过程中再调用writeCharacteristic之后发现BLE设备没有接收到设置的数据,没... 阅读全文

posted @ 2015-05-04 16:21 wi100sh 阅读(3766) 评论(0) 推荐(0) 编辑

【转】BLE开发的各种坑
摘要:原文网址:http://www.race604.com/android-ble-tips/这段时间在做低功耗蓝牙(BLE)应用的开发(并不涉及蓝牙协议栈)。总体感觉 Android BLE 还是不太稳定,开发起来也是各种痛苦。这里记录一些杂项和开发中遇到的问题及其解决方法,避免大家踩坑。本文说的问题... 阅读全文

posted @ 2015-05-04 16:18 wi100sh 阅读(1029) 评论(0) 推荐(0) 编辑

【转】android蓝牙开发---与蓝牙模块进行通信--不错
摘要:原文网址:http://www.cnblogs.com/wenjiang/p/3200138.html近半个月来一直在搞android蓝牙这方面,主要是项目需要与蓝牙模块进行通信。开头的进展很顺利,但因为蓝牙模块不在我这里,所以只能用手机测试。一开头就发现手机的蓝牙不能用,为了证明这点,我刷了四次不... 阅读全文

posted @ 2015-05-03 15:03 wi100sh 阅读(287) 评论(0) 推荐(0) 编辑

【转】Any way to implement BLE notifications in Android-L preview----不错
摘要:原文网址:http://stackoverflow.com/questions/24865120/any-way-to-implement-ble-notifications-in-android-l-previewThis question is not about Android notific... 阅读全文

posted @ 2015-05-03 10:21 wi100sh 阅读(472) 评论(0) 推荐(0) 编辑

bluetooth记录
摘要:1. 网址Client Characteristic Configurationhttps://developer.bluetooth.org/gatt/descriptors/Pages/DescriptorViewer.aspx?u=org.bluetooth.descriptor.gatt.c... 阅读全文

posted @ 2015-04-27 11:47 wi100sh 阅读(784) 评论(0) 推荐(0) 编辑

【转】BLE 学习记录
摘要:原文网址:http://m.blog.csdn.net/blog/chiooo/43985401BLE 学习记录ANROID BLE 开发,基于 bluetoothlegatt 分析mBluetoothAdapter = mBluetoothManager.getAdapter(); 得到 手机上蓝... 阅读全文

posted @ 2015-04-13 17:13 wi100sh 阅读(904) 评论(0) 推荐(0) 编辑

【转】Android4.3 蓝牙BLE初步
摘要:原文网址:http://www.cnblogs.com/savagemorgan/p/3722657.html一、关键概念:Generic Attribute Profile (GATT)通过BLE连接,读写属性类小数据的Profile通用规范。现在所有的BLE应用Profile都是基于GATT的。... 阅读全文

posted @ 2015-04-11 10:09 wi100sh 阅读(209) 评论(0) 推荐(0) 编辑

【转】android中重复连接ble设备导致的连接后直接返回STATE_DISCONNECTED的解决办法---不错不错,重新连接需要花费很长的时间
摘要:原文网址:http://bbs.eeworld.com.cn/thread-438571-1-1.html/* * 通过使用if(gatt==null)来判断gatt是否被创建过,如果创建过就使用gatt.connect();重新建立连接。 * 但是在这种情况... 阅读全文

posted @ 2015-04-11 09:58 wi100sh 阅读(1867) 评论(0) 推荐(0) 编辑

【转】Android:Bluetooth 的打开和关闭--不错
摘要:原文网址:http://www.ifeegoo.com/android-turn-on-and-turn-off-bluetooth.html摘要:Android 中打开和关闭 Bluetooth 的代码虽然并不困难,但是我们还是需要注意一些细节和异常情况,这样我们才能更好的优化我们的与 Bluet... 阅读全文

posted @ 2015-03-27 17:36 wi100sh 阅读(4558) 评论(0) 推荐(0) 编辑

【转】蓝牙4.0BLE cc2540 usb-dongle的 SmartRF Packet Sniffer 抓取数据方法--不错
摘要:原文网址:http://blog.csdn.net/mzy202/article/details/32408223蓝牙4.0BLE cc2540 usb-dongle的 SmartRF Packet Sniffer抓取数据方法 【原创,多图】 (只发布于csdn博客, 如需转载,请注明出处,谢谢!)... 阅读全文

posted @ 2015-03-23 10:49 wi100sh 阅读(2331) 评论(0) 推荐(0) 编辑

【转】BCSphere入门教程01:Immediate Alert--不错
摘要:原文网址:http://www.ituring.com.cn/article/117570写在前面智能硬件开发的起点是智能硬件,在本教程中的每一章节,首先会列出您的蓝牙智能硬件所需要支持的Service,请您确保硬件可以正常的读写特征值,并确认硬件功能正常。可以使用bcsphere-core-dev... 阅读全文

posted @ 2015-03-13 13:47 wi100sh 阅读(522) 评论(0) 推荐(0) 编辑

【转】 Android BCM4330 蓝牙BT驱动调试记录
摘要:原文网址:http://blog.csdn.net/dwyane_zhang/article/details/7180779网上关于BT的驱动很少,所以我在开发过程中把其中的步骤记录下来。供大家相互学习讨论。一、关于BT driver的移植:1. Enablebluetootch in BoadCo... 阅读全文

posted @ 2015-03-12 16:16 wi100sh 阅读(1671) 评论(0) 推荐(0) 编辑

【转】Android4.4 之Bluetooth整理
摘要:原文网址:http://www.cnblogs.com/shed/p/3737016.htmlAndroid 4.4上蓝牙协议栈采用的是BRCM和Google共同开发的bluedroid,代替了之前的Bluez.一、 Bluetooth 源码分布 (基于Android 4.4 )1. package... 阅读全文

posted @ 2015-03-11 17:03 wi100sh 阅读(895) 评论(0) 推荐(0) 编辑

【转】Android bluetooth介绍(三): 蓝牙扫描(scan)设备分析
摘要:原文网址:http://blog.csdn.net/xubin341719/article/details/38584469关键词:蓝牙blueZ A2DP、SINK、sink_connect、sink_disconnect、sink_suspend、sink_resume、sink_is_conn... 阅读全文

posted @ 2015-03-11 16:55 wi100sh 阅读(2038) 评论(0) 推荐(0) 编辑

【转】BlueDroid介绍
摘要:原文网址:http://www.cnblogs.com/hzl6255/p/3887547.html自从Android 4.2开始,Android开始使用自己的蓝牙协议栈BlueDroid,而不是bluezBlueDroid可分为两层:- BTE: Bluetooth Embedded System... 阅读全文

posted @ 2015-03-11 16:54 wi100sh 阅读(879) 评论(0) 推荐(0) 编辑

【转】Android 4.2蓝牙介绍
摘要:原文网址:http://blog.csdn.net/innost/article/details/9187199Tieto公司某蓝牙大牛写得《程序员》投稿文章Android 4.2蓝牙介绍蓝牙一词源于公元十世纪丹麦国王HaraldBlatand名字中的Blatand。Blatand的英文之意就是Bl... 阅读全文

posted @ 2015-03-11 16:51 wi100sh 阅读(382) 评论(0) 推荐(0) 编辑

导航

点击右上角即可分享
微信分享提示