No description
Find a file
Dan Halbert 6639ca662f
Merge pull request #72 from tannewt/remove_radio
Remove radio and fix scan
2020-03-04 14:58:58 -05:00
.github/workflows update pylint examples directive 2020-01-14 17:18:46 -06:00
adafruit_ble Remove Radio because it is in it's own library now 2020-03-03 15:39:27 -08: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 Fix rST link syntax 2020-02-19 12:16:19 -08:00
requirements.txt Add blinka dep back for micropython 2020-02-19 12:12:25 -08:00
setup.py Add blinka dep back for micropython 2020-02-19 12:12:25 -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: Linux support is **very** limited. See `Adafruit Blinka _bleio
<https://github.com/adafruit/Adafruit_Blinka_bleio>`_ for details.

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>`_.