Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Bluetooth programming in python [closed]

Are there any nice Python libraries for Bluetooth programming? I tried PyBluez, but Eclipse doesn't recognize the module Bluetooth. Can anyone suggest tutorials for Python and Bluetooth?

like image 820
jvc Avatar asked Jul 13 '10 15:07

jvc


1 Answers

PyBluez now supports Python 3, so it may work for you now.

Python 3.3 and above has inbuilt support for Bluetooth though sockets. While there is native support, many features of PyBluez are not available in native Python 3 sockets. For example, you cannot use inquiry scans or SDP.

I created a tutorial describing the differences between using PyBluez vs. Python 3 sockets for a simple Bluetooth application.

like image 113
Kevin Avatar answered Sep 29 '22 23:09

Kevin