BTZen - library to asynchronously access Bluetooth devices
Project description
BTZen is a library to asynchronously access Bluetooth devices using Python language. It provides simple API over complex D-Bus Bluez interface.
Features
The main features of BTZen are
Connect and access multiple Bluetooth devices in parallel with Python asynchronous coroutines.
GATT notification interface integrated into main API of the library.
Automatic reconnections to devices.
Access to serial devices implementing Stollmann (Telit) protocol.
Support for devices, which do not follow the Bluetooth specification fully like SensorTag (CC2650STK) or Thingy:52.
Support for Bluez managed interfaces of devices, i.e. battery level.
Allow to implement support for new devices easily.
The library can be used with any Bluetooth Smart device. It was tested with
SensorTag (CC2650STK) to read temperature, pressure, humidity, light, accelerometer data and state of the buttons.
Thingy:52 to read temperature, pressure, humidity, light data and state of the button.
Mi Smart Scale to read weight data.
OSTC dive computer to read serial device data using Stollmann (Telit) protocol.
The library is tested with default asyncio event loop and its drop-in replacement uvloop. Use of uvloop increases performance of the library.
The scripts in scripts directory demonstrate reading data from various devices.
NOTE: The first version of SensorTag (CC2541DK) is not supported at the moment. If you still own the device and would like it to be supported, please raise an issue.
API Changes
Please note that since version 0.6.0 the API changed. The benefits are
support different makes of devices with single API
it is much easier to implement functionality for new devices
shutting down of BTZen connection sessions is more reliable
If pre-0.6.0 version of BTZen is required, then use appropriate versioning in installation requirements of your project.
Documentation
This project’s documentation is lacking at the moment. Some useful tips might be found in this README file and files at
Installation
Use pip to install BTZen library (Cython needs to be installed first), for example:
pip install --user cython pip install --user btzen
BTZen uses experimental API of Bluez adapter interface to connect to Bluetooth devices. The bluetoothd daemon has to be started with experimental option on. This can be permanently achieved by setting Experimental to true in /etc/bluez/main.conf file.
Change AutoEnable option to true in /etc/bluetooth/main.conf to automate powering up of Bluetooth controllers. Otherwise a controller might need to be switched on manually with bluetoothctl tool. BTZen library does not perform this operation.
Connection Management
BTZen uses ConnectDevice method of Bluez adapter interface to discover and connect to Bluetooth devices. MAC address of a device needs to be known in order to connect.
BTZen connection manager allows to connect and disconnect Bluetooth devices without restarting of an application. If an application is reading data from multiple Bluetooth devices, the application can continue working if, for example, a sensor requires battery change.
Please note
when trying to connect to a device using BTZen library, do not start scan with other programs, i.e. bluetoothctl
if a device is disconnected with an external program, the external program has to be used to reconnect
Obtaining MAC Address
If Bluetooth device MAC address is not known
Start bluetoothctl.
Start scan.
Save discovered MAC address.
Optionally, remove device with remove command of bluetoothctl utility.
Start BTZen based application using the discovered MAC address.
Performance
The library enables programmers to communicate with mutliple devices in parallel without using threads. This avoids context switching of threads and minimizes memory requirements, which makes BTZen more efficient than other, similar libraries. To keep the library as fast as possible, Cython is used to access Bluez D-Bus API. BTZen can be used with uvloop for even more increased performance of an application.
Support for GATT notification interface allows efficient use of Bluetooth devices. For example, data from sensors like accelerometers can be read only when sensor wakes up and transmits data after sensor has been moved. This limits amount of transferred data and avoids draining battery of the sensor, which will happen if data is polled at regular, short intervals.
Requirements
BTZen library requires the following software components
Python 3.11
bluez 5.68
sd-bus (kart of systemd)
Cython 3.0.0
License
BTZen library is licensed under terms of GPL license, version 3, see COPYING file for details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file btzen-0.8.0.tar.gz
.
File metadata
- Download URL: btzen-0.8.0.tar.gz
- Upload date:
- Size: 355.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4d7dfb9d967fb49e8161b7a1b52ae12155ace39b8e3f35f25ea6e002e9517504 |
|
MD5 | 3a74c3b998083d8b47190e228d79d0ac |
|
BLAKE2b-256 | 25d276202d67d42e44c9c6d9490ffadbd49e27d331906c9726057f681dfd7e0b |