Skip to content
/ btpy Public

python bluetooth library for classic, low-energy and beacon devices

License

Notifications You must be signed in to change notification settings

nbdy/btpy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

btpy

this is a wrapper around

how to ...

.. install

pip3 install btpy
# or (this is not guaranteed to be stable)
pip3 install git+https://github.com/nbdy/btpy

... to use it

from btpy import LEDevice, Beacon, ClassicDevice

le_results = LEDevice.scan(4)

beacon_results = Beacon.scan(5)

classic_results = ClassicDevice.scan(6)
TODO
  • Tests