通过Python通过蓝牙发送消息或数据
如何通过 python 通过蓝牙发送消息,而不需要像类型数字这样的密钥身份验证?
我用的是pybluez 但我收到此错误:
File "./send", line 12, in <module>
connect()
File "./send", line 8, in connect
sock.connect((bd_addr, port))
File "<string>", line 5, in connect
bluetooth.btcommon.BluetoothError: (111, 'Connection refused')
这是代码
#!/usr/bin/python
import bluetooth
def connect ():
bd_addr = "x:x:x:x:x:x"
port = 1
sock=bluetooth.BluetoothSocket(bluetooth.RFCOMM)
sock.connect((bd_addr, port))
sock.send("hello!!")
sock.close()
connect()
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
正如@TJD所说,您需要确保与所需服务的正确端口绑定。
然后,作为第二步,尝试在要连接到的设备上找到服务。
基于此信息,您可以连接到设备上运行的服务。根据服务/个人资料规格从设备中获取信息。例如,在上面的列表中,您会看到“耳机音频网关”和带有数字'1108'的配置文件列表,这是该服务的简短UID。现在,您可以查找此配置文件的命令,并且应该有效。
As @TJD said, you need to ensure you bind with the correct port for the service you want.
Then as the second step try to find the service on the device you want to connect to.
Based on this information you can connect to a service running on a device. According to the service/profile specification you send service specific commands and get back information from the device. E.g. in the list above you see the 'Headset Audio Gateway' and the profile list with the number '1108', which is the short uuid for the service. You can now lookup the commands for this profile and it should work.
我有同样的错误。绑定地址后,错误消失了。
0指的是您的蓝牙设备。 1指端口号。
如果您正在运行Linux,则可以将 hciconfig 运行到设备编号。
I had the same error. After binding the address the error went away.
The 0 refers to your bluetooth device. The 1 refers to the port number.
If you're running linux you can run hciconfig to the the device number.
您是否尝试从毕色的基本RFComm-Client和RFComm-Server示例代码开始?
基本上是您的代码在做的事情,但它使用服务发现来确保连接到适当的端口。
Have you tried starting with the basic rfcomm-client and rfcomm-server example code from pybluez?
http://code.google.com/p/pybluez/source/browse/trunk/examples/simple/rfcomm-client.py
It's basically what your code is doing, but it uses service discovery to ensure connection to proper port.
我尝试在你的问题中运行相同的代码,它对我有用,我可以发送一些数据并使用其串行监视器查看数据进入arduino。
但是,我在此之前做了一步,我首先将 HC-05 与我的设备(我正在尝试发送数据的设备,在我的情况下,它是一台 Linux 机器)配对,
我使用 bluetoothctl 工具进行配对。
工作图片
I tried running the same code in your question, its working for me, i can send some data and see that the data coming into arduino using its Serial Monitor.
But, I did one step prior to it, I paired the HC-05 first with my device (the one using which i am trying to send data, in my case, its a linux machine)
I used bluetoothctl tool to pair .
working picture