No description
Find a file
Scott Shawcroft 7adbb88c96
Merge pull request #65 from dhalbert/update-dis
Make DeviceInfoService handle remote services
2020-01-27 15:23:49 -08:00
.github/workflows update pylint examples directive 2020-01-14 17:18:46 -06:00
adafruit_ble Make DeviceInfoService handle remote services 2020-01-27 17:07:07 -05:00
docs Mock microcontroller so we don't use Blinka's board detect. 2020-01-21 14:35:05 -08:00
examples Merge pull request #58 from dglaude/patch-1 2020-01-21 12:40:21 -05:00
.gitignore Ignore python build output. 2020-01-21 10:45:17 -08:00
.pylintrc add cookiecutter files; UARTService now working with adafruit_bluefruit_connect library 2019-01-21 20:56:26 -05:00
.readthedocs.yml add cookiecutter files; UARTService now working with adafruit_bluefruit_connect library 2019-01-21 20:56:26 -05:00
CODE_OF_CONDUCT.md squashed: 2019-01-08 16:52:42 -05:00
LICENSE add cookiecutter files; UARTService now working with adafruit_bluefruit_connect library 2019-01-21 20:56:26 -05:00
README.rst Merge pull request #61 from adafruit/dherrada-patch-3 2020-01-16 11:48:02 -08:00
requirements.txt Removed empty line 2020-01-13 17:12:14 -05:00
setup.py Use find_packages to find subpackages. 2020-01-21 10:54:56 -08:00

Introduction
============

.. image:: https://readthedocs.org/projects/adafruit-circuitpython-ble/badge/?version=latest
    :target: https://circuitpython.readthedocs.io/projects/ble/en/latest/
    :alt: Documentation Status

.. image:: https://img.shields.io/discord/327254708534116352.svg
    :target: https://discord.gg/nBQh6qu
    :alt: Discord

.. image:: https://github.com/adafruit/Adafruit_CircuitPython_ble/workflows/Build%20CI/badge.svg
    :target: https://github.com/adafruit/Adafruit_CircuitPython_ble/actions
    :alt: Build Status

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

Dependencies
=============
This driver depends on:

* `Adafruit CircuitPython <https://github.com/adafruit/circuitpython>`_

Please ensure all dependencies are available on the CircuitPython filesystem.
This is easily achieved by downloading
`the Adafruit library and driver bundle <https://github.com/adafruit/Adafruit_CircuitPython_Bundle>`_.

Installing from PyPI
====================

Warning: This will **not** work with BLE on Linux

On supported GNU/Linux systems like the Raspberry Pi, you can install the driver locally `from
PyPI <https://pypi.org/project/adafruit-circuitpython-ble/>`_. To install for current user:

.. code-block:: shell

    pip3 install adafruit-circuitpython-ble

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

.. code-block:: shell

    sudo pip3 install adafruit-circuitpython-ble

To install in a virtual environment in your current project:

.. code-block:: shell

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

.. code-block:: python

    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")


Contributing
============

Contributions are welcome! Please read our `Code of Conduct
<https://github.com/adafruit/Adafruit_CircuitPython_ble/blob/master/CODE_OF_CONDUCT.md>`_
before contributing to help this project stay welcoming.

Documentation
=============

For information on building library documentation, please check out `this guide <https://learn.adafruit.com/creating-and-sharing-a-circuitpython-library/sharing-our-docs-on-readthedocs#sphinx-5-1>`_.