Bluetooth: Central¶
1 功能概述¶
此项目演示蓝牙主机功能,通过扫描其他BLE设备,并通过足够强的信号建立到第一个设备的连接,演示了非常基本的BLE central角色功能。
2 环境要求¶
board: 支持 BLE 的蓝牙设备
uart(option): 用来显示串口log
测试软件: nRF Connect
3 编译和烧录¶
项目位置:zephyr\samples_panchip\bluetooth\central
目前可使用ZAL工具或quick build脚本进行编译和下载。
脚本位置:quick_build_samples\bluetooth\central.bat
。
打开脚本后默认会编译项目,编译完成时,可输入字符进行后续下载等操作:
Input the keyword to continue:
'b' build 编译项目
'r' make clean and rebuild 重新编译项目
'f' flash download 下载
'e' erase chip 擦除芯片
'o' open project by VS Code 打开 `VS Code`,可查看源码,执行编译下载等
others exit 退出
wait input:
4 演示说明¶
烧录完成后,设备可以显示Scanning successfully started,并且显示查找到的设备,并显示设备的RSSI大小
Scanning successfully started Device found: 78:5A:A2:78:1C:2B (random) (RSSI -84) Device found: 57:92:22:A1:0D:5F (random) (RSSI -93) Device found: 60:9D:E2:44:03:C7 (random) (RSSI -80) Device found: F4:7A:F6:6A:22:D7 (random) (RSSI -82) Device found: D0:90:D0:CF:42:C7 (random) (RSSI -83) Device found: 68:73:48:04:2F:6E (random) (RSSI -96)
当时central扫描到一个
RSSI
小于-70
且adv type
类型为ADV_IND
或者ADV_DIRECT_IND
的设备时,此时central设备马上建立连接Connected: CD:ED:61:AE:DB:1D (random)
连接成功后,central设备会立即断开连接,同时继续扫描满足
2
中所述条件的广播,然后再次连接,如此反复。Disconnected: CD:ED:61:AE:DB:1D (random) (reason 0x13)