繁体   English   中英

raspberrypi 到 raspberrypi /bluetooth/errorcode 111,连接被拒绝

[英]raspberrypi to raspberrypi /bluetooth/errorcode 111, connection refused

我正在学习 rasp pi3 b+

我想通过蓝牙与 rasp pi - rasp pi 通信

已经设置pair,在cmd中互相连接(奇怪的情况:(命令)scan on >Relative address没有出现,但是pair add,connect add是成功的)

我输入了如下的绳索

From Bluetooth import*

client_socket=BluetoothSocket(RFCOMM)
client_socket.connect(("Add , port"))

while True:
      msg = client_socket.recv(1024)
      print("receive msg: {}".format(msg))
client_socket.close()

    enter code here
    enter code here
    enter code here

----------------

another one

same ...
while True:
      msg=raw_input("send")
      print(msg)
      clinet_socket.send(msg)
client_socket.close()

在 cmd 中输入“python filename.penter code herey”后

发生了错误

bluetooth.btcommon.BluetoothError: (111, "connection refused')

请帮帮我...

链路另一端的设备是什么?

远程设备是否支持 RFCOMM 或串行端口配置文件 (SPP)?

您可以通过以下方式查看远程设备的服务列表:

bluetoothctl info <mac_address_of_remote_Device>

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM