adafruit-circuitpython-bluefruitspi


Nameadafruit-circuitpython-bluefruitspi JSON
Version 1.1.18 PyPI version JSON
download
home_page
SummaryCircuitPython helper class to work with the Adafruit Bluefruit LE SPI Friend.
upload_time2023-09-25 15:37:06
maintainer
docs_urlNone
author
requires_python
licenseMIT
keywords adafruit ble bluetooth bluefruit spi friend hardware micropython circuitpython
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            Introduction
============

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

.. image:: https://raw.githubusercontent.com/adafruit/Adafruit_CircuitPython_Bundle/main/badges/adafruit_discord.svg
    :target: https://adafru.it/discord
    :alt: Discord

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

.. image:: https://img.shields.io/badge/code%20style-black-000000.svg
    :target: https://github.com/psf/black
    :alt: Code Style: Black

Helper class to work with the Adafruit Bluefruit LE SPI Friend.

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

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

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
====================

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

.. code-block:: shell

    pip3 install adafruit-circuitpython-bluefruitspi

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

.. code-block:: shell

    sudo pip3 install adafruit-circuitpython-bluefruitspi

To install in a virtual environment in your current project:

.. code-block:: shell

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

Usage Example
=============

.. code-block:: python

    # A simple echo test for the Feather M0 Bluefruit
    # Sets the name, then echo's all RX'd data with a reversed packet

    import time
    import busio
    import board
    from digitalio import DigitalInOut
    from adafruit_bluefruitspi import BluefruitSPI

    spi_bus = busio.SPI(board.SCK, MOSI=board.MOSI, MISO=board.MISO)
    cs = DigitalInOut(board.D8)
    irq = DigitalInOut(board.D7)
    rst = DigitalInOut(board.D4)
    bluefruit = BluefruitSPI(spi_bus, cs, irq, rst, debug=False)

    # Initialize the device and perform a factory reset
    print("Initializing the Bluefruit LE SPI Friend module")
    bluefruit.init()
    bluefruit.command_check_OK(b'AT+FACTORYRESET', delay=1)

    # Print the response to 'ATI' (info request) as a string
    print(str(bluefruit.command_check_OK(b'ATI'), 'utf-8'))

    # Change advertised name
    bluefruit.command_check_OK(b'AT+GAPDEVNAME=BlinkaBLE')

    while True:
        print("Waiting for a connection to Bluefruit LE Connect ...")
        # Wait for a connection ...
        dotcount = 0
        while not bluefruit.connected:
            print(".", end="")
            dotcount = (dotcount + 1) % 80
            if dotcount == 79:
                print("")
            time.sleep(0.5)

        # Once connected, check for incoming BLE UART data
        print("\n *Connected!*")
        connection_timestamp = time.monotonic()
        while True:
            # Check our connection status every 3 seconds
            if time.monotonic() - connection_timestamp > 3:
                connection_timestamp = time.monotonic()
                if not bluefruit.connected:
                    break

            # OK we're still connected, see if we have any data waiting
            resp = bluefruit.uart_rx()
            if not resp:
                continue  # nothin'
            print("Read %d bytes: %s" % (len(resp), resp))
            # Now write it!
            print("Writing reverse...")
            send = []
            for i in range(len(resp), 0, -1):
                send.append(resp[i-1])
            print(bytes(send))
            bluefruit.uart_tx(bytes(send))

        print("Connection lost.")

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

API documentation for this library can be found on `Read the Docs <https://docs.circuitpython.org/projects/bluefruitspi/en/latest/>`_.

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

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

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

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "adafruit-circuitpython-bluefruitspi",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "adafruit,ble,bluetooth,bluefruit,spi,friend,hardware,micropython,circuitpython",
    "author": "",
    "author_email": "Adafruit Industries <circuitpython@adafruit.com>",
    "download_url": "https://files.pythonhosted.org/packages/2f/c9/ac29a1b60eb8d5907dc08b071a4e9ee20ead640024d744822252a0531455/adafruit-circuitpython-bluefruitspi-1.1.18.tar.gz",
    "platform": null,
    "description": "Introduction\n============\n\n.. image:: https://readthedocs.org/projects/adafruit-circuitpython-bluefruitspi/badge/?version=latest\n    :target: https://docs.circuitpython.org/projects/bluefruitspi/en/latest/\n    :alt: Documentation Status\n\n.. image:: https://raw.githubusercontent.com/adafruit/Adafruit_CircuitPython_Bundle/main/badges/adafruit_discord.svg\n    :target: https://adafru.it/discord\n    :alt: Discord\n\n.. image:: https://github.com/adafruit/Adafruit_CircuitPython_BluefruitSPI/workflows/Build%20CI/badge.svg\n    :target: https://github.com/adafruit/Adafruit_CircuitPython_BluefruitSPI/actions/\n    :alt: Build Status\n\n.. image:: https://img.shields.io/badge/code%20style-black-000000.svg\n    :target: https://github.com/psf/black\n    :alt: Code Style: Black\n\nHelper class to work with the Adafruit Bluefruit LE SPI Friend.\n\nDependencies\n=============\nThis driver depends on:\n\n* `Adafruit CircuitPython <https://github.com/adafruit/circuitpython>`_\n* `Bus Device <https://github.com/adafruit/Adafruit_CircuitPython_BusDevice>`_\n\nPlease ensure all dependencies are available on the CircuitPython filesystem.\nThis is easily achieved by downloading\n`the Adafruit library and driver bundle <https://github.com/adafruit/Adafruit_CircuitPython_Bundle>`_.\n\nInstalling from PyPI\n====================\n\nOn supported GNU/Linux systems like the Raspberry Pi, you can install the driver locally `from\nPyPI <https://pypi.org/project/adafruit-circuitpython-bluefruitspi/>`_. To install for current user:\n\n.. code-block:: shell\n\n    pip3 install adafruit-circuitpython-bluefruitspi\n\nTo install system-wide (this may be required in some cases):\n\n.. code-block:: shell\n\n    sudo pip3 install adafruit-circuitpython-bluefruitspi\n\nTo install in a virtual environment in your current project:\n\n.. code-block:: shell\n\n    mkdir project-name && cd project-name\n    python3 -m venv .venv\n    source .venv/bin/activate\n    pip3 install adafruit-circuitpython-bluefruitspi\n\nUsage Example\n=============\n\n.. code-block:: python\n\n    # A simple echo test for the Feather M0 Bluefruit\n    # Sets the name, then echo's all RX'd data with a reversed packet\n\n    import time\n    import busio\n    import board\n    from digitalio import DigitalInOut\n    from adafruit_bluefruitspi import BluefruitSPI\n\n    spi_bus = busio.SPI(board.SCK, MOSI=board.MOSI, MISO=board.MISO)\n    cs = DigitalInOut(board.D8)\n    irq = DigitalInOut(board.D7)\n    rst = DigitalInOut(board.D4)\n    bluefruit = BluefruitSPI(spi_bus, cs, irq, rst, debug=False)\n\n    # Initialize the device and perform a factory reset\n    print(\"Initializing the Bluefruit LE SPI Friend module\")\n    bluefruit.init()\n    bluefruit.command_check_OK(b'AT+FACTORYRESET', delay=1)\n\n    # Print the response to 'ATI' (info request) as a string\n    print(str(bluefruit.command_check_OK(b'ATI'), 'utf-8'))\n\n    # Change advertised name\n    bluefruit.command_check_OK(b'AT+GAPDEVNAME=BlinkaBLE')\n\n    while True:\n        print(\"Waiting for a connection to Bluefruit LE Connect ...\")\n        # Wait for a connection ...\n        dotcount = 0\n        while not bluefruit.connected:\n            print(\".\", end=\"\")\n            dotcount = (dotcount + 1) % 80\n            if dotcount == 79:\n                print(\"\")\n            time.sleep(0.5)\n\n        # Once connected, check for incoming BLE UART data\n        print(\"\\n *Connected!*\")\n        connection_timestamp = time.monotonic()\n        while True:\n            # Check our connection status every 3 seconds\n            if time.monotonic() - connection_timestamp > 3:\n                connection_timestamp = time.monotonic()\n                if not bluefruit.connected:\n                    break\n\n            # OK we're still connected, see if we have any data waiting\n            resp = bluefruit.uart_rx()\n            if not resp:\n                continue  # nothin'\n            print(\"Read %d bytes: %s\" % (len(resp), resp))\n            # Now write it!\n            print(\"Writing reverse...\")\n            send = []\n            for i in range(len(resp), 0, -1):\n                send.append(resp[i-1])\n            print(bytes(send))\n            bluefruit.uart_tx(bytes(send))\n\n        print(\"Connection lost.\")\n\nDocumentation\n=============\n\nAPI documentation for this library can be found on `Read the Docs <https://docs.circuitpython.org/projects/bluefruitspi/en/latest/>`_.\n\nFor 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>`_.\n\nContributing\n============\n\nContributions are welcome! Please read our `Code of Conduct\n<https://github.com/adafruit/Adafruit_CircuitPython_BluefruitSPI/blob/main/CODE_OF_CONDUCT.md>`_\nbefore contributing to help this project stay welcoming.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "CircuitPython helper class to work with the Adafruit Bluefruit LE SPI Friend.",
    "version": "1.1.18",
    "project_urls": {
        "Homepage": "https://github.com/adafruit/Adafruit_CircuitPython_BluefruitSPI"
    },
    "split_keywords": [
        "adafruit",
        "ble",
        "bluetooth",
        "bluefruit",
        "spi",
        "friend",
        "hardware",
        "micropython",
        "circuitpython"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "965f652927a54c8fb062d03f4e8a3cf2df2084f7bddf909478fe5626e4fd1c11",
                "md5": "ec892233a963fc8b2d393ca499a9ed38",
                "sha256": "de3e7394f5912448b85db0ebf2ebff9f30382eca16b6370bc99183110d96c8b9"
            },
            "downloads": -1,
            "filename": "adafruit_circuitpython_bluefruitspi-1.1.18-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "ec892233a963fc8b2d393ca499a9ed38",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 8595,
            "upload_time": "2023-09-25T15:37:05",
            "upload_time_iso_8601": "2023-09-25T15:37:05.381323Z",
            "url": "https://files.pythonhosted.org/packages/96/5f/652927a54c8fb062d03f4e8a3cf2df2084f7bddf909478fe5626e4fd1c11/adafruit_circuitpython_bluefruitspi-1.1.18-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2fc9ac29a1b60eb8d5907dc08b071a4e9ee20ead640024d744822252a0531455",
                "md5": "cfec988f6e5e9ca37fd7c59ca0ada991",
                "sha256": "daa2136cc040d2ac8a51851a6764226f3a81afd5fd62c16b6d9a89d7634fe00d"
            },
            "downloads": -1,
            "filename": "adafruit-circuitpython-bluefruitspi-1.1.18.tar.gz",
            "has_sig": false,
            "md5_digest": "cfec988f6e5e9ca37fd7c59ca0ada991",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 31407,
            "upload_time": "2023-09-25T15:37:06",
            "upload_time_iso_8601": "2023-09-25T15:37:06.480237Z",
            "url": "https://files.pythonhosted.org/packages/2f/c9/ac29a1b60eb8d5907dc08b071a4e9ee20ead640024d744822252a0531455/adafruit-circuitpython-bluefruitspi-1.1.18.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-09-25 15:37:06",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "adafruit",
    "github_project": "Adafruit_CircuitPython_BluefruitSPI",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "adafruit-circuitpython-bluefruitspi"
}
        
Elapsed time: 0.14185s