Skip to main content

Bluetooth Low Energy (BLE) library for CircuitPython

Project description

Introduction

Documentation Status Discord Build Status Code Style: Ruff

This module provides higher-level BLE (Bluetooth Low Energy) functionality, building on the native _bleio module.

Dependencies

This driver depends on:

Please ensure all dependencies are available on the CircuitPython filesystem. This is easily achieved by downloading the Adafruit library and driver bundle.

Installing from PyPI

Warning: Linux support is very limited. See Adafruit Blinka _bleio for details.

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-circuitpython-ble

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

sudo pip3 install adafruit-circuitpython-ble

To install in a virtual environment in your current project:

mkdir project-name && cd project-name
python3 -m venv .venv
source .venv/bin/activate
pip3 install adafruit-circuitpython-ble

Usage Example

from adafruit_ble import BLERadio

radio = BLERadio()
print("scanning")
found = set()
for entry in radio.start_scan(timeout=60, minimum_rssi=-80):
    addr = entry.address
    if addr not in found:
        print(entry)
    found.add(addr)

print("scan done")

Documentation

API documentation for this library can be found on Read the Docs.

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

Contributing

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

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_circuitpython_ble-10.1.1.tar.gz (53.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

adafruit_circuitpython_ble-10.1.1-py3-none-any.whl (37.6 kB view details)

Uploaded Python 3

File details

Details for the file adafruit_circuitpython_ble-10.1.1.tar.gz.

File metadata

File hashes

Hashes for adafruit_circuitpython_ble-10.1.1.tar.gz
Algorithm Hash digest
SHA256 6570243b5549e7209a859daf5522bf354bf48758dfd3a5d70c4c0dd7688257f6
MD5 22ed18043cd10aa598d3fe523b490ba3
BLAKE2b-256 680c845145609512b1cc31915b5c0dc97424d70fb49ffe274cc3953a05956687

See more details on using hashes here.

File details

Details for the file adafruit_circuitpython_ble-10.1.1-py3-none-any.whl.

File metadata

File hashes

Hashes for adafruit_circuitpython_ble-10.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 abfb6d4ba9ad7e49d1c5a06dbf5ecaa179c047d4300ff39e27a0c16ad09b29de
MD5 d9f8851be6bf8fed9b4d1de01f3b649a
BLAKE2b-256 ff5ef878bad8b64cd5f7ed1ad538e465ef19fd2b9f9753371225e69f07155e4c

See more details on using hashes here.

Supported by

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