Twisted 和 PyBluez 一起工作吗?

发布于 2024-11-26 09:47:41 字数 268 浏览 0 评论 0原文

我想同时使用twisted和蓝牙。目前我正在使用在扭曲线程中运行的 PyBluez 来执行此操作。

PyBluez 只是创建一些套接字(或类似套接字?它有一个像普通套接字一样的文件描述符)对象,基本上你会这样做:

sock=bluetooth.BluetoothSocket( bluetooth.RFCOMM )
sock.connect((device_id,1))

我不能以某种方式将该套接字插入到扭曲反应器中并将其与协议连接吗?

I want to use twisted and bluetooth together. At the moment I am doing this with PyBluez running in an twisted thread.

PyBluez just creates some socket (or socket-like? it has a file descriptor like a normal socket) object, basically you do:

sock=bluetooth.BluetoothSocket( bluetooth.RFCOMM )
sock.connect((device_id,1))

Can't I just insert that socket into the twisted reactor somehow and connect it with a Protocol?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

一人独醉 2024-12-03 09:47:41

您可以编写一个实现 IReadDescriptor (或 IWriteDescriptor)的类并将其连接到reactor,如 这个例子

You can write a class implementing IReadDescriptor (or IWriteDescriptor) and connect it to reactor, like in this example.

心凉怎暖 2024-12-03 09:47:41

我发现这个项目将 pybluez 与twisted结合在一起: http://pydoc.net/airi/0.1 .1/airi.twisted_bluetooth

I found this project which combines pybluez with twisted: http://pydoc.net/airi/0.1.1/airi.twisted_bluetooth

过潦 2024-12-03 09:47:41

这段一段代码实际上对我帮助很大。我现在在 Twisted 中有一个有效的实现。

This piece of code actually helped me a lot. I now have a working implementation in Twisted.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文