通过Python通过蓝牙发送消息或数据

发布于 2024-12-05 07:05:13 字数 608 浏览 0 评论 0 原文

如何通过 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()

How can i send messages over bluetooth via python without key authentification like type numbers ?

i used pybluez
but i got this error:

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')

Here is the code

#!/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 技术交流群。

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

发布评论

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

评论(4

风柔一江水 2024-12-12 07:05:13

正如@TJD所说,您需要确保与所需服务的正确端口绑定。

>>> from bluetooth import *
>>> from pprint import pprint
>>>
>>> devices = discover_devices()
>>> devices
['xx:yy:tt:zz:44:BD', '00:yy:72:zz:bb:aa']

然后,作为第二步,尝试在要连接到的设备上找到服务。

>>> service = find_service(address='00:yy:72:zz:bb:aa')
>>> pprint(service)
[{'description': None,
  'host': '00:yy:72:zz:bb:aa',
  'name': 'Headset Audio Gateway',
  'port': 12,
  'profiles': [('1108', 258)],
  ...},
 {'description': None,
  'host': '00:yy:72:zz:bb:aa',
  'name': 'Dial-Up Networking',
  'port': 1,
  'profiles': [('1103', 256)],
  'protocol': 'RFCOMM',
  ...}]

基于此信息,您可以连接到设备上运行的服务。根据服务/个人资料规格从设备中获取信息。例如,在上面的列表中,您会看到“耳机音频网关”和带有数字'1108'的配置文件列表,这是该服务的简短UID。现在,您可以查找此配置文件的命令,并且应该有效。

As @TJD said, you need to ensure you bind with the correct port for the service you want.

>>> from bluetooth import *
>>> from pprint import pprint
>>>
>>> devices = discover_devices()
>>> devices
['xx:yy:tt:zz:44:BD', '00:yy:72:zz:bb:aa']

Then as the second step try to find the service on the device you want to connect to.

>>> service = find_service(address='00:yy:72:zz:bb:aa')
>>> pprint(service)
[{'description': None,
  'host': '00:yy:72:zz:bb:aa',
  'name': 'Headset Audio Gateway',
  'port': 12,
  'profiles': [('1108', 258)],
  ...},
 {'description': None,
  'host': '00:yy:72:zz:bb:aa',
  'name': 'Dial-Up Networking',
  'port': 1,
  'profiles': [('1103', 256)],
  'protocol': 'RFCOMM',
  ...}]

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.

森林很绿却致人迷途 2024-12-12 07:05:13

我有同样的错误。绑定地址后,错误消失了。

rfcomm bind 0 <address> 1

0指的是您的蓝牙设备。 1指端口号。
如果您正在运行Linux,则可以将 hciconfig 运行到设备编号。

I had the same error. After binding the address the error went away.

rfcomm bind 0 <address> 1

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.

许久 2024-12-12 07:05:13

您是否尝试从毕色的基本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.

一袭白衣梦中忆 2024-12-12 07:05:13

我尝试在你的问题中运行相同的代码,它对我有用,我可以发送一些数据并使用其串行监视器查看数据进入arduino。

但是,我在此之前做了一步,我首先将 HC-05 与我的设备(我正在尝试发送数据的设备,在我的情况下,它是一台 Linux 机器)配对,

我使用 bluetoothctl 工具进行配对。

  1. sudo bluetoothctl # 这将在 cli 扫描中启动该工具
  2. 的 MAC 地址
  3. # 这将显示 hc-05 对 #这将询问
  4. 我的模块的用户名和密码,密码是1234

工作图片

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 .

  1. sudo bluetoothctl # this will start the tool in cli
  2. scan on # this will show the MAC address of hc-05
  3. pair <MAC_ADDRESS_OF_HC-05> #this will ask for username and password
  4. for my module the password is 1234

working picture

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