使用 python 的 Raspberry Pi 蓝牙网状网络
你们知道我可以学习的关于使用 python 使用蓝牙网状网络的教程吗?我计划使用蓝牙网状网络连接 3 个 Raspberry Pi,该网状网络只会发送字符串。我已经使用 wifi 做到了,但还需要蓝牙来实现。我正在网上搜索,但很难看到任何有关它的教程。非常感谢您的帮助!
Do you guys know any tutorials about working with Bluetooth mesh using python that I can study? I am planning to connect 3 Raspberry Pi using Bluetooth mesh that will only send strings of characters. I already did it using wifi but Bluetooth is needed also to be implemented. I am searching online but I am having a hard time seeing any tutorials about it. Thank you so much for the help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
BlueZ(RPi 上使用的蓝牙堆栈)API 的文档位于:
https://git.kernel.org/pub/scm/bluetooth/bluez.git/tree/doc/mesh-api.txt
他们在源代码树中有一个Python示例:
<一href="https://git.kernel.org/pub/scm/bluetooth/bluez.git/tree/test/test-mesh" rel="noreferrer">https://git.kernel.org/pub/scm /bluetooth/bluez.git/tree/test/test-mesh
蓝牙 SIG 有一篇文章介绍蓝牙 MESH:
https://www.bluetooth.com/blog/an-intro- to-bluetooth-mesh-part1/
以及他们编写的一些学习指南:
https://www.bluetooth. com/bluetooth-resources/?types=study-guide&categories=&tags=&keyword=mesh
silvair 是早期采用者蓝牙 MESH 的,他们有一个 python 库:
https://python- bluetooth-mesh.readthedocs.io/en/latest/quickstart.html
The documentation for the BlueZ (The Bluetooth stack used on RPi) API is at:
https://git.kernel.org/pub/scm/bluetooth/bluez.git/tree/doc/mesh-api.txt
They have a Python example in the source tree:
https://git.kernel.org/pub/scm/bluetooth/bluez.git/tree/test/test-mesh
The Bluetooth SIG have an article introducing Bluetooth MESH:
https://www.bluetooth.com/blog/an-intro-to-bluetooth-mesh-part1/
As well as some study guides they have written:
https://www.bluetooth.com/bluetooth-resources/?types=study-guide&categories=&tags=&keyword=mesh
silvair is an early adopter of of Bluetooth MESH and they have a python library at:
https://python-bluetooth-mesh.readthedocs.io/en/latest/quickstart.html