匿名
未登录
登录
百问网嵌入式Linux wiki
搜索
查看“How to scan BLE devices”的源代码
来自百问网嵌入式Linux wiki
名字空间
页面
讨论
更多
更多
页面选项
Read
查看源代码
历史
←
如何扫描BLE设备
因为以下原因,您没有权限编辑本页:
您所请求的操作仅限于该用户组的用户使用:
用户
您可以查看与复制此页面的源代码。
{{DISPLAYTITLE:如何扫描BLE设备}} =如何扫描 BLE 设备= : 本页列出了扫描、连接和显示 BLE 设备信息的操作示例。 BLE代表低功耗蓝牙 ==需要的软件包== * bluez5 ==配置== : 修改配置文件 /etc/udev/rules.d/10-local.rules 让蓝牙自动启动: <syntaxhighlight lang="bash"> # Set bluetooth power up ACTION=="add", KERNEL=="hci0", RUN+="/usr/bin/hciconfig hci0 up </syntaxhighlight> ==一些实用命令== : '''Bluez''' 默认提供一些工具来分析蓝牙网络。 : '''hciconfig''' 配置hci连接 : '''hcitool''' 进行扫描、查找设备、连接到设备、管理设备列表。设备可能是正常或低能耗模式。 : '''gatttool''' 用于BLE设备管理 ===连接BLE设备的步骤=== : 扫描附近所有可见的低功耗蓝牙设备的命令: <syntaxhighlight lang="bash"> Board $> hciconfig hci0 up Board $> hcitool lescan </syntaxhighlight> : 扫描可用的BLE设备: <syntaxhighlight lang="bash"> Board $> hcitool lewladd <BLE_MAC_ADDRRESS> </syntaxhighlight> : 将 BLE 设备添加到白名单中(可选): <syntaxhighlight lang="bash"> Board $> hcitool lecc <BLE_MAC_ADDRESS> </syntaxhighlight> : 连接 BLE 设备: :: 一旦识别出BLE设备,就可以使用 [https://wiki.st.com/stm32mpu/wiki/Network_tools#gatttool GATTTOOL] 发现,读取和修改其特性(见附件)。 :: [https://wiki.st.com/stm32mpu/wiki/Network_tools#gatttool GATTTOOL] 提供两种工作模式:交互式和非交互式 ==== GATTTOOL 交互模式==== <syntaxhighlight lang="bash"> Board $> gatttool -b <MAC Address> --interactive </syntaxhighlight> : 在交互模式下,可以使用下面的命令: :: connect:连接到指定的设备 :: primary:禁用所有主要属性 :: char-read-hnd <handle> 读取指定的句柄/属性值 :: char-write-cmd <handle> <value>修改句柄值 ====GATTTOOL 非交互模式:==== : 在非交互模式下,命令是一一发出的。在每个命令中,GATTTOOL 都会尝试连接设备、操作和断开与设备的连接。 : 以下是几个示例: <syntaxhighlight lang="bash"> Board $> gatttool -b <Mac Address> --primary Board $> gatttool -b <MAC Address> --characteristics Board $> gatttool -b <MAC Address> --char-read Board $> gatttool -b <MAC Address> --char-desc </syntaxhighlight> [[Category:Linux_Operating_System]] [[Category:Networking]] [[Category:Bluetooth]]
返回至
如何扫描BLE设备
。
导航
导航
WIKI首页
官方店铺
资料下载
交流社区
所有页面
所有产品
MPU-Linux开发板
MCU-单片机开发板
Linux开发系列视频
单片机开发系列视频
所有模块配件
Wiki工具
Wiki工具
特殊页面
页面工具
页面工具
用户页面工具
更多
链入页面
相关更改
页面信息
页面日志