Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Sending messages or datas with bluetooth via python

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()
like image 456
bulleric Avatar asked Sep 20 '11 13:09

bulleric


People also ask

Can you transmit data over Bluetooth?

In Bluetooth & other devices settings, select Send or receive files via Bluetooth. In Bluetooth File Transfer, select Send files > choose the device you want to share to > Next. Select Browse > the file or files to share > Open > Next (which sends it) > Finish.

Can Python use Bluetooth?

PyBluez is a Python extension module written in C that provides access to system Bluetooth resources in an object oriented, modular manner.

What is a Bluetooth device?

A Bluetooth® device works by using radio waves instead of wires or cables to connect with your cell phone, smartphone or computer. Bluetooth is a wireless short-range communications technology standard found in millions of products we use every day – including headsets, smartphones, laptops and portable speakers.


2 Answers

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.

like image 61
laidback Avatar answered Oct 12 '22 23:10

laidback


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.

like image 40
mingxiao Avatar answered Oct 13 '22 00:10

mingxiao