Skip to main content

`_bleio` for Blinka based on `bleak`

Project description

Introduction

Documentation Status Discord Build Status

_bleio for Blinka based on bleak and bluez.

Dependencies

This driver depends on:

It also depends on these Debian packages not install on Raspbian by default:

  • bluez-hcidump

Installing from PyPI

On supported GNU/Linux systems like the Raspberry Pi, you can install the driver locally from PyPI. To install for current user:

pip3 install adafruit-blinka-bleio

To install system-wide (this may be required in some cases):

sudo pip3 install adafruit-blinka-bleio

To install in a virtual environment in your current project:

mkdir project-name && cd project-name
python3 -m venv .env
source .env/bin/activate
pip3 install adafruit-blinka-bleio

Permissions

For comprehensive scanning we use hcidump and hcitool. By default, only root has enough privileges to do what we need.

So, to get permissions we use capabilities to grant hcitool and hcidump raw network access. This is very powerful! So, to limit access we change file execution permissions to restrict it to users in the bluetooth group.

To add your user to the bluetooth group do:

sudo usermod -a -G bluetooth <your username>

To set permissions do:

sudo chown :bluetooth /usr/bin/hci*
sudo chmod o-x /usr/bin/hci*
sudo setcap 'cap_net_raw,cap_net_admin+eip' /usr/bin/hcitool
sudo setcap 'cap_net_raw,cap_net_admin+eip' /usr/bin/hcidump

Usage Example

Do not use this library directly. Use CircuitPython BLE instead: https://github.com/adafruit/Adafruit_CircuitPython_BLE/

Contributing

Contributions are welcome! Please read our Code of Conduct before contributing to help this project stay welcoming.

Documentation

For information on building library documentation, please check out this guide.

Troubleshooting

Raspberry Pi 3b Rev 1.2

The Raspberry Pi 3b’s BLE chip is connected over UART to the main processor without flow control. This can cause unreliability with BLE. To improve reliability, we can slow the UART. To do so, edit /usr/bin/btuart and replace the 921600 with 460800.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

adafruit-blinka-bleio-0.9.3.tar.gz (23.3 kB view details)

Uploaded Source

File details

Details for the file adafruit-blinka-bleio-0.9.3.tar.gz.

File metadata

  • Download URL: adafruit-blinka-bleio-0.9.3.tar.gz
  • Upload date:
  • Size: 23.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.2

File hashes

Hashes for adafruit-blinka-bleio-0.9.3.tar.gz
Algorithm Hash digest
SHA256 e12737cbc10720af4cdd770769dfa95e5160fe126ae8b74eee963f84af7bd0cb
MD5 a686eb9e932422334d0a93b13c8cf893
BLAKE2b-256 14319a46f5044bf957fe0e4bc84e09c4b3e98310c1c85653e4433308bc73fd81

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page