文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

windows+python+bleak+BLE低功耗蓝牙通讯连接

2023-09-02 10:37

关注

前言

1.为什么选bleak
  参考这篇知乎:https://zhuanlan.zhihu.com/p/577687336
  windows端使用python连接常规的BLE设备(蓝牙4.0),仅考虑bleak模块(排除pybluez、pybluez2、pygatt)。

2.本文主要参考
  本文主要参考bleak的官方文档:https://github.com/hbldh/bleak

3.本文所用设备
  应事先学习蓝牙连接的常规知识,并用例如LightBlue软件调试对应的蓝牙设备(获取MAC地址、特征值Characteristic UUID)。
  本文选用CC2541模块,通过串口连接到电脑如所示。
CC2541接线示意

正文

1.获取设备MAC地址

  本文设备的MAC地址为:88:25:83:F3:86:C1
  本文设备的特征值为:0000ffe1-0000-1000-8000-00805f9b34fb
  (PS:这个特征值挺通用的,多数设备能直接用)

方法1:使用LightBlue连接可查看

在这里插入图片描述

方法2:使用如下程序,打印所有设备

import asynciofrom bleak import BleakScannerasync def main():    devices = await BleakScanner.discover()    for d in devices:   #d为类,其属性有:d.name为设备名称,d.address为设备地址        print(d)asyncio.run(main())

运行结果:
运行结果

2.连接设备,并监听消息

  发送端:电脑端通过串口调试助手(UartAssist)发送消息
  接收端:电脑蓝牙连接设备,并监听打印(python程序)
  bleak的官方例程为:https://github.com/hbldh/bleak/blob/develop/examples/enable_notifications.py
完整程序如下

# -*- coding: utf-8 -*-import asynciofrom bleak import BleakClient, BleakScannerfrom bleak.backends.characteristic import BleakGATTCharacteristic#设备的Characteristic UUIDpar_notification_characteristic="0000ffe1-0000-1000-8000-00805f9b34fb"#设备的MAC地址par_device_addr="88:25:83:F3:86:C1"#监听回调函数,此处为打印消息def notification_handler(characteristic: BleakGATTCharacteristic, data: bytearray):    print("rev data:",data)async def main():    print("starting scan...")    #基于MAC地址查找设备    device = await BleakScanner.find_device_by_address(        par_device_addr, cb=dict(use_bdaddr=False)  #use_bdaddr判断是否是MOC系统    )    if device is None:        print("could not find device with address '%s'", par_device_addr)        return    print("connecting to device...")    async with BleakClient(device) as client:        print("Connected")        await client.start_notify(par_notification_characteristic, notification_handler)                await asyncio.sleep(10.0)   #程序监听的时间,此处为10秒        await client.stop_notify(par_notification_characteristic)asyncio.run(main())

发送:在运行过程中(即打印出“Connected”之后),由串口调试助手发送消息"hello world"
串口发送

运行结果:
运行结果

3.连接设备,断开连接事件回调

  在前文中,我们设定了10秒的休眠时间,可以监听消息10秒后自动断开监听。
  而实际使用中,存在设备断开连接的情况。此时我们使用连接断开事件的回调函数disconnected_callback
  bleak的官方例程为:https://github.com/hbldh/bleak/blob/develop/examples/disconnect_callback.py
完整代码如下:

# -*- coding: utf-8 -*-import asynciofrom bleak import BleakClient, BleakScannerfrom bleak.backends.characteristic import BleakGATTCharacteristic#设备的Characteristic UUIDpar_notification_characteristic="0000ffe1-0000-1000-8000-00805f9b34fb"#设备的MAC地址par_device_addr="88:25:83:F3:86:C1"#监听回调函数,此处为打印消息def notification_handler(characteristic: BleakGATTCharacteristic, data: bytearray):    print("rev data:",data)async def main():    print("starting scan...")    #基于MAC地址查找设备    device = await BleakScanner.find_device_by_address(        par_device_addr, cb=dict(use_bdaddr=False)  #use_bdaddr判断是否是MOC系统    )    if device is None:        print("could not find device with address '%s'", par_device_addr)        return    #事件定义    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) as client:        print("Connected")        await client.start_notify(par_notification_characteristic, notification_handler)        await disconnected_event.wait()       #休眠直到设备断开连接,有延迟。此处为监听设备直到断开为止        # await asyncio.sleep(10.0)           #程序监听的时间,此处为10秒        # await client.stop_notify(par_notification_characteristic)asyncio.run(main())

运行结果:
运行一段时间后,迅速拔掉设备电源,断开连接

4.连接设备,并发送消息

  调用下面这个函数即可
  client.write_gatt_char(characteristic_UUID,send_str)
  characteristic_UUID: 需要具备写属性(Write属性),可通过LightBlue查看
  send_str: 为准备发送的数据,为bytearray类型

  本文中
  characteristic_UUID为"0000ffe1-0000-1000-8000-00805f9b34fb"(具备写属性)
  send_str为(HEX)“0x68,0x69,0x20,0x77,0x6F,0x72,0x6C,0x64,0x0A,0x0D”=(ASCII)“hi world\n”

完整代码如下

# -*- coding: utf-8 -*-import asynciofrom bleak import BleakClient, BleakScannerfrom bleak.backends.characteristic import BleakGATTCharacteristic#设备的Characteristic UUIDpar_notification_characteristic="0000ffe1-0000-1000-8000-00805f9b34fb"#设备的Characteristic UUID(具备写属性Write)par_write_characteristic="0000ffe1-0000-1000-8000-00805f9b34fb"#设备的MAC地址par_device_addr="88:25:83:F3:86:C1"#准备发送的消息,为“hi world\n”的HEX形式(包括回车符0x0A 0x0D)send_str=bytearray([0x68,0x69,0x20,0x77,0x6F,0x72,0x6C,0x64,0x0A,0x0D])#监听回调函数,此处为打印消息def notification_handler(characteristic: BleakGATTCharacteristic, data: bytearray):    print("rev data:",data)async def main():    print("starting scan...")    #基于MAC地址查找设备    device = await BleakScanner.find_device_by_address(        par_device_addr, cb=dict(use_bdaddr=False)  #use_bdaddr判断是否是MOC系统    )    if device is None:        print("could not find device with address '%s'", par_device_addr)        return    #事件定义    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) as client:        print("Connected")        await client.start_notify(par_notification_characteristic, notification_handler)        while True:            await client.write_gatt_char(par_write_characteristic, send_str)            await asyncio.sleep(1.0)           #每休眠1秒发送一次        # await disconnected_event.wait()       #休眠直到设备断开连接,有延迟。此处为监听设备直到断开为止        # await asyncio.sleep(10.0)           #程序监听的时间,此处为10秒        # await client.stop_notify(par_notification_characteristic)asyncio.run(main())

运行结果:
通过串口接收消息

闲聊

  在上位机开发、移动端开发中,BLE设备的教程都较少,入门门槛较高。
  能连接蓝牙4.0的代码,一定能连接常规蓝牙。
  能连接常规蓝牙的代码,不一定能连接蓝牙4.0。
  CSDN写博客,图片插入的尺寸和位置不清楚怎么调节,后续再研究研究吧…

  基于本文,就能实现BLE设备的接收、发送、检测断开了。多读读文档,加一些逻辑,就能应用于各种场合了

来源地址:https://blog.csdn.net/rory_wind/article/details/128821945

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯