首页 > Python资料 博客日记
基于Python蓝牙低功耗库bleak获实时获取心率广播心率
2024-07-11 00:30:02Python资料围观164次
文章基于Python蓝牙低功耗库bleak获实时获取心率广播心率分享给大家,欢迎收藏Python资料网,专注分享技术知识
前提
- 心率设备需支持心率广播功能
- 心率广播功能需处于开启状态
- 心率广播功能最多只能同时连接一台设备,如有其它设备正在连接需要先断开
使用方法
- 安装蓝牙低功耗库
break
pip install bleak
- 开启心率广播功能后设备界面会显示当前设备名称,将设备名称替换到变量
device_name
- 运行程序,将自动扫描设备并连接到心率广播功能,异步获取心率数据
代码
import asyncio
from bleak import BleakClient, BleakScanner
from bleak.backends.characteristic import BleakGATTCharacteristic
# 设备名称
device_name: str = "HUAWEI WATCH HR-341"
# 心率
value = 0
# 最大连接超时时间
timeout = 10
# 通知处理器函数,当收到通知时调用
def notification_handler(characteristic: BleakGATTCharacteristic, data: bytearray):
global value
value = int(data.hex().split('06')[1], 16)
print(value)
# 异步函数:扫描设备并根据本地名称获取地址
async def scan_for_device(device_name: str):
devices = await BleakScanner.discover()
for device in devices:
if device.name == device_name:
return device
return None
# 异步函数:查找描述为“Heart Rate Measurement”的特征UUID
async def find_heart_rate_measurement_uuid(client: BleakClient):
for service in client.services:
for characteristic in service.characteristics:
if "Heart Rate Measurement" in characteristic.description:
return characteristic.uuid
return None
# 异步主函数
async def main():
print("Starting scan...")
# 根据本地名称扫描设备,也可以直接填入设备的物理地址
device = await scan_for_device(device_name)
if device is None:
print(f"Device with name {device_name} not found.")
return
print(f"Found device: {device.name} ({device.address})")
# 创建一个事件对象,用于处理断开连接的情况
disconnected_event = asyncio.Event()
# 断开连接时的回调函数
def disconnected_callback(client):
print("Disconnected callback called!")
disconnected_event.set()
print("Connecting to device...")
async with BleakClient(device, disconnected_callback=disconnected_callback, timeout=timeout) as client:
print("Connected")
# 查找“Heart Rate Measurement”特征UUID(心率广播)
hr_measurement_uuid = await find_heart_rate_measurement_uuid(client)
if hr_measurement_uuid:
# 开始通知,并设置通知处理器
await client.start_notify(hr_measurement_uuid, notification_handler)
# 等待断开连接事件
await disconnected_event.wait()
else:
print("Heart Rate Measurement characteristic not found.")
# 运行异步主函数
asyncio.run(main())
版权声明:本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若内容造成侵权/违法违规/事实不符,请联系邮箱:jacktools123@163.com进行投诉反馈,一经查实,立即删除!
标签:
相关文章
最新发布
- 【Python】selenium安装+Microsoft Edge驱动器下载配置流程
- Python 中自动打开网页并点击[自动化脚本],Selenium
- Anaconda基础使用
- 【Python】成功解决 TypeError: ‘<‘ not supported between instances of ‘str’ and ‘int’
- manim边学边做--三维的点和线
- CPython是最常用的Python解释器之一,也是Python官方实现。它是用C语言编写的,旨在提供一个高效且易于使用的Python解释器。
- Anaconda安装配置Jupyter(2024最新版)
- Python中读取Excel最快的几种方法!
- Python某城市美食商家爬虫数据可视化分析和推荐查询系统毕业设计论文开题报告
- 如何使用 Python 批量检测和转换 JSONL 文件编码为 UTF-8
点击排行
- 版本匹配指南:Numpy版本和Python版本的对应关系
- 版本匹配指南:PyTorch版本、torchvision 版本和Python版本的对应关系
- Python 可视化 web 神器:streamlit、Gradio、dash、nicegui;低代码 Python Web 框架:PyWebIO
- 相关性分析——Pearson相关系数+热力图(附data和Python完整代码)
- Python与PyTorch的版本对应
- Anaconda版本和Python版本对应关系(持续更新...)
- Python pyinstaller打包exe最完整教程
- Could not build wheels for llama-cpp-python, which is required to install pyproject.toml-based proj