Skip to main content

Bluetooth Low Energy (BLE) library for CircuitPython

Project description

Introduction

Documentation Status Discord Build Status Code Style: Black

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.0.5.tar.gz (56.0 kB view details)

Uploaded Source

Built Distribution

File details

Details for the file adafruit-circuitpython-ble-10.0.5.tar.gz.

File metadata

File hashes

Hashes for adafruit-circuitpython-ble-10.0.5.tar.gz
Algorithm Hash digest
SHA256 7d59de204dc72a1b813e0ef557c7233afe6d5bf84708e46e193c4951a4c6ff55
MD5 9539f34aa1ce42a100e5028152b62b83
BLAKE2b-256 1c7e9982f243cde34b35e7fd6e66df2d2e553514e45cf487d7b34c18a3c21eb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adafruit_circuitpython_ble-10.0.5-py3-none-any.whl
Algorithm Hash digest
SHA256 70c8c2836e9ecfc9809abf5640b3fbc1912941d0039b3443eadf166c3d322a4c
MD5 ff4cc91b5997ea6619db5b7a51134e10
BLAKE2b-256 ec5d96391766a6f9a80d5fe4fec2b42e4500e72e7d497956b9d2da171c3175b3

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