No description
Find a file
Scott Shawcroft 795dd520f8
Merge pull request #34 from dhalbert/check-cpy-version
Complain if trying to use with CPy 4.x
2019-11-19 11:43:38 -08:00
adafruit_ble Complain if trying to use with CPy 5.x 2019-11-19 14:38:42 -05:00
docs address comments so far; fix sphinx build 2019-11-14 12:19:24 -05:00
examples Lint and rename SolicitServicesAdvertisement 2019-11-01 13:46:30 -07:00
.gitignore Rework the API to use descriptors. 2019-10-22 17:30:12 -07: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
.travis.yml Rework the API to use descriptors. 2019-10-22 17:30:12 -07: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 doc and cleanup pass 2019-11-13 21:22:50 -05:00
requirements.txt squashed: 2019-01-08 16:52:42 -05: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://travis-ci.com/adafruit/Adafruit_CircuitPython_ble.svg?branch=master
    :target: https://travis-ci.com/adafruit/Adafruit_CircuitPython_ble
    :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>`_.

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