Twisted 和 PyBluez 一起工作吗?
我想同时使用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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以编写一个实现 IReadDescriptor (或 IWriteDescriptor)的类并将其连接到reactor,如 这个例子。
You can write a class implementing IReadDescriptor (or IWriteDescriptor) and connect it to reactor, like in this example.
我发现这个项目将 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
这段一段代码实际上对我帮助很大。我现在在 Twisted 中有一个有效的实现。
This piece of code actually helped me a lot. I now have a working implementation in Twisted.