Ошибка при попытке отправить данные на смартфон с raspbian - PullRequest
0 голосов
/ 21 января 2019

Спасибо за помощь: я пытаюсь отправить некоторые данные с Raspberry Pi 3, на котором работает Raspbian, на мой OnePlus 5.

Я много чего пробовал касательно Bluetooth.Некоторые библиотеки и другие вещи, но как новичок я не все понимаю.

import bluetooth
port = 1
sock=bluetooth.BluetoothSocket( bluetooth.RFCOMM )
sock.connect(('94:65:2d:7b:e5:75', port))

sock.send("this is a fucking test!!")
sock.close()

Вот ошибка:

Traceback (most recent call last):
  File "<string>", line 3, in connect
_bluetooth.error: (111, 'Connection refused')

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/home/pi/SCHOOLINKSAMERE/BLUETOOTH TEST 2.py", line 4, in <module>
    sock.connect(('94:65:2d:7b:e5:75', port))
  File "<string>", line 5, in connect
bluetooth.btcommon.BluetoothError: (111, 'Connection refused')

Моя последняя воля - отправить список объектовсмартфон.Большое спасибо.

...