adafruit-circuitpython-clue


Nameadafruit-circuitpython-clue JSON
Version 3.1.0 PyPI version JSON
download
home_page
SummaryA high-level library representing all the features of the Adafruit CLUE
upload_time2024-01-08 21:46:11
maintainer
docs_urlNone
author
requires_python
licenseMIT
keywords adafruit clue microbit microcontroller 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-clue/badge/?version=latest
    :target: https://docs.circuitpython.org/projects/clue/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_CLUE/workflows/Build%20CI/badge.svg
    :target: https://github.com/adafruit/Adafruit_CircuitPython_CLUE/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

A high level library representing all the features of the Adafruit CLUE


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

* `Adafruit CircuitPython <https://github.com/adafruit/circuitpython>`_
* `Bus Device <https://github.com/adafruit/Adafruit_CircuitPython_BusDevice>`_
* `Register <https://github.com/adafruit/Adafruit_CircuitPython_Register>`_
* `Adafruit LSM6DS <https://github.com/adafruit/Adafruit_CircuitPython_LSM6DS>`_
* `Adafruit LIS3MDL <https://github.com/adafruit/Adafruit_CircuitPython_LIS3MDL>`_
* `Adafruit APDS9960 <https://github.com/adafruit/Adafruit_CircuitPython_APDS9960>`_
* `Adafruit BMP280 <https://github.com/adafruit/Adafruit_CircuitPython_BMP280>`_
* `Adafruit SHT31D <https://github.com/adafruit/Adafruit_CircuitPython_SHT31D>`_
* `Adafruit NeoPixel <https://github.com/adafruit/Adafruit_CircuitPython_NeoPixel>`_
* `Adafruit Display Text <https://github.com/adafruit/Adafruit_CircuitPython_Display_Text>`_

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

Demos may require libraries not listed here.

Usage Example
=============
This example displays sensor and input data on the CLUE display.

.. code-block:: python

    from adafruit_clue import clue

    clue.sea_level_pressure = 1020

    clue_data = clue.simple_text_display(title="CLUE Sensor Data!", title_scale=2, num_lines=15)

    while True:
        clue_data[0].text = "Acceleration: {:.2f} {:.2f} {:.2f}".format(*clue.acceleration)
        clue_data[1].text = "Gyro: {:.2f} {:.2f} {:.2f}".format(*clue.gyro)
        clue_data[2].text = "Magnetic: {:.3f} {:.3f} {:.3f}".format(*clue.magnetic)
        clue_data[3].text = "Pressure: {:.3f}hPa".format(clue.pressure)
        clue_data[4].text = "Altitude: {:.1f}m".format(clue.altitude)
        clue_data[5].text = "Temperature: {:.1f}C".format(clue.temperature)
        clue_data[6].text = "Humidity: {:.1f}%".format(clue.humidity)
        clue_data[7].text = "Proximity: {}".format(clue.proximity)
        clue_data[8].text = "Gesture: {}".format(clue.gesture)
        clue_data[9].text = "Color: R: {} G: {} B: {} C: {}".format(*clue.color)
        clue_data[10].text = "Button A: {}".format(clue.button_a)
        clue_data[11].text = "Button B: {}".format(clue.button_b)
        clue_data[12].text = "Touch 0: {}".format(clue.touch_0)
        clue_data[13].text = "Touch 1: {}".format(clue.touch_1)
        clue_data[14].text = "Touch 2: {}".format(clue.touch_2)
        clue_data.show()


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

API documentation for this library can be found on `Read the Docs <https://docs.circuitpython.org/projects/clue/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_CLUE/blob/main/CODE_OF_CONDUCT.md>`_
before contributing to help this project stay welcoming.

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "adafruit-circuitpython-clue",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "adafruit,clue,microbit,microcontroller,hardware,micropython,circuitpython",
    "author": "",
    "author_email": "Adafruit Industries <circuitpython@adafruit.com>",
    "download_url": "https://files.pythonhosted.org/packages/2b/54/656e5ae186ea961ef9dbc1850b6886c7441c837e384315bcaf3f1ef49c71/adafruit-circuitpython-clue-3.1.0.tar.gz",
    "platform": null,
    "description": "Introduction\n============\n\n.. image:: https://readthedocs.org/projects/adafruit-circuitpython-clue/badge/?version=latest\n    :target: https://docs.circuitpython.org/projects/clue/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_CLUE/workflows/Build%20CI/badge.svg\n    :target: https://github.com/adafruit/Adafruit_CircuitPython_CLUE/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\nA high level library representing all the features of the Adafruit CLUE\n\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* `Register <https://github.com/adafruit/Adafruit_CircuitPython_Register>`_\n* `Adafruit LSM6DS <https://github.com/adafruit/Adafruit_CircuitPython_LSM6DS>`_\n* `Adafruit LIS3MDL <https://github.com/adafruit/Adafruit_CircuitPython_LIS3MDL>`_\n* `Adafruit APDS9960 <https://github.com/adafruit/Adafruit_CircuitPython_APDS9960>`_\n* `Adafruit BMP280 <https://github.com/adafruit/Adafruit_CircuitPython_BMP280>`_\n* `Adafruit SHT31D <https://github.com/adafruit/Adafruit_CircuitPython_SHT31D>`_\n* `Adafruit NeoPixel <https://github.com/adafruit/Adafruit_CircuitPython_NeoPixel>`_\n* `Adafruit Display Text <https://github.com/adafruit/Adafruit_CircuitPython_Display_Text>`_\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://circuitpython.org/libraries>`_.\n\nDemos may require libraries not listed here.\n\nUsage Example\n=============\nThis example displays sensor and input data on the CLUE display.\n\n.. code-block:: python\n\n    from adafruit_clue import clue\n\n    clue.sea_level_pressure = 1020\n\n    clue_data = clue.simple_text_display(title=\"CLUE Sensor Data!\", title_scale=2, num_lines=15)\n\n    while True:\n        clue_data[0].text = \"Acceleration: {:.2f} {:.2f} {:.2f}\".format(*clue.acceleration)\n        clue_data[1].text = \"Gyro: {:.2f} {:.2f} {:.2f}\".format(*clue.gyro)\n        clue_data[2].text = \"Magnetic: {:.3f} {:.3f} {:.3f}\".format(*clue.magnetic)\n        clue_data[3].text = \"Pressure: {:.3f}hPa\".format(clue.pressure)\n        clue_data[4].text = \"Altitude: {:.1f}m\".format(clue.altitude)\n        clue_data[5].text = \"Temperature: {:.1f}C\".format(clue.temperature)\n        clue_data[6].text = \"Humidity: {:.1f}%\".format(clue.humidity)\n        clue_data[7].text = \"Proximity: {}\".format(clue.proximity)\n        clue_data[8].text = \"Gesture: {}\".format(clue.gesture)\n        clue_data[9].text = \"Color: R: {} G: {} B: {} C: {}\".format(*clue.color)\n        clue_data[10].text = \"Button A: {}\".format(clue.button_a)\n        clue_data[11].text = \"Button B: {}\".format(clue.button_b)\n        clue_data[12].text = \"Touch 0: {}\".format(clue.touch_0)\n        clue_data[13].text = \"Touch 1: {}\".format(clue.touch_1)\n        clue_data[14].text = \"Touch 2: {}\".format(clue.touch_2)\n        clue_data.show()\n\n\nDocumentation\n=============\n\nAPI documentation for this library can be found on `Read the Docs <https://docs.circuitpython.org/projects/clue/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_CLUE/blob/main/CODE_OF_CONDUCT.md>`_\nbefore contributing to help this project stay welcoming.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "A high-level library representing all the features of the Adafruit CLUE",
    "version": "3.1.0",
    "project_urls": {
        "Homepage": "https://github.com/adafruit/Adafruit_CircuitPython_CLUE"
    },
    "split_keywords": [
        "adafruit",
        "clue",
        "microbit",
        "microcontroller",
        "hardware",
        "micropython",
        "circuitpython"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b8a883a468b9e676041ec70926420ecfda8a54f817d54dd1e31542dce052ad53",
                "md5": "d0536ed492647dc7cf8d1014320d34ec",
                "sha256": "1495e0b3270e6708ab0662d17994c839273ffbe4dfee678fb23ca459c9ce5921"
            },
            "downloads": -1,
            "filename": "adafruit_circuitpython_clue-3.1.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "d0536ed492647dc7cf8d1014320d34ec",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 10932,
            "upload_time": "2024-01-08T21:46:09",
            "upload_time_iso_8601": "2024-01-08T21:46:09.583891Z",
            "url": "https://files.pythonhosted.org/packages/b8/a8/83a468b9e676041ec70926420ecfda8a54f817d54dd1e31542dce052ad53/adafruit_circuitpython_clue-3.1.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2b54656e5ae186ea961ef9dbc1850b6886c7441c837e384315bcaf3f1ef49c71",
                "md5": "918d42a414b861c597e4fa7a28c5cb70",
                "sha256": "4d3a917e2dad22e91d65401785f7017a48c70143e9c1fd14fdceef380e4102f4"
            },
            "downloads": -1,
            "filename": "adafruit-circuitpython-clue-3.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "918d42a414b861c597e4fa7a28c5cb70",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 17767229,
            "upload_time": "2024-01-08T21:46:11",
            "upload_time_iso_8601": "2024-01-08T21:46:11.529600Z",
            "url": "https://files.pythonhosted.org/packages/2b/54/656e5ae186ea961ef9dbc1850b6886c7441c837e384315bcaf3f1ef49c71/adafruit-circuitpython-clue-3.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-01-08 21:46:11",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "adafruit",
    "github_project": "Adafruit_CircuitPython_CLUE",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "adafruit-circuitpython-clue"
}
        
Elapsed time: 0.15406s