circuitpython-bmp180


Namecircuitpython-bmp180 JSON
Version 0.1.1 PyPI version JSON
download
home_page
SummaryCircuitPython driver for the bmp180 sensor
upload_time2023-04-22 20:16:48
maintainer
docs_urlNone
author
requires_python
licenseMIT
keywords adafruit blinka circuitpython micropython bmp180 barometric pressure driver sensor
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            Introduction
============

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

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

.. image:: https://img.shields.io/pypi/v/circuitpython-bmp180.svg
    :alt: latest version on PyPI
    :target: https://pypi.python.org/pypi/circuitpython-bmp180

.. image:: https://static.pepy.tech/personalized-badge/circuitpython-bmp180?period=total&units=international_system&left_color=grey&right_color=blue&left_text=Pypi%20Downloads
    :alt: Total PyPI downloads
    :target: https://pepy.tech/project/circuitpython-bmp180


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

CircuitPython driver from BMP180 Temperature and Barometric Pressure sensor adapted from CircuitPython driver for BMP280
Derived from the work of BadTigrou

Installation and 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>`_


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

.. code-block:: shell

    pip3 install circuitpython-bmp180

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

.. code-block:: shell

    sudo pip3 install circuitpython-bmp180

To install in a virtual environment in your current project:

.. code-block:: shell

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

Installing to a Connected CircuitPython Device with Circup
==========================================================

Make sure that you have ``circup`` installed in your Python environment.
Install it with the following command if necessary:

.. code-block:: shell

    pip3 install circup

With ``circup`` installed and your CircuitPython device connected use the
following command to install:

.. code-block:: shell

    circup install bmp180

Or the following command to update an existing version:

.. code-block:: shell

    circup update

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

Take a look a the ``bmp180_simpletest.py`` in the examples directory

Documentation
=============
API documentation for this library can be found on `Read the Docs <https://circuitpython-qmc5883l.readthedocs.io/>`_.

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

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

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "circuitpython-bmp180",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "adafruit,blinka,circuitpython,micropython,bmp180,barometric,pressure,driver,sensor",
    "author": "",
    "author_email": "\"Jose D. Montoya\" <qmc@mailmeto.mozmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/e7/02/779a447a207f09c78447ca1123e262a1c7bfa2391195f93b3f98458fe0a3/circuitpython-bmp180-0.1.1.tar.gz",
    "platform": null,
    "description": "Introduction\n============\n\n.. image:: https://readthedocs.org/projects/circuitpython-bmp180/badge/?version=latest\n    :target: https://circuitpython-bmp180.readthedocs.io/\n    :alt: Documentation Status\n\n.. image:: https://github.com/jposada202020/CircuitPython_BMP180/workflows/Build%20CI/badge.svg\n    :target: https://github.com/jposada202020/CircuitPython_BMP180/actions\n    :alt: Build Status\n\n.. image:: https://img.shields.io/pypi/v/circuitpython-bmp180.svg\n    :alt: latest version on PyPI\n    :target: https://pypi.python.org/pypi/circuitpython-bmp180\n\n.. image:: https://static.pepy.tech/personalized-badge/circuitpython-bmp180?period=total&units=international_system&left_color=grey&right_color=blue&left_text=Pypi%20Downloads\n    :alt: Total PyPI downloads\n    :target: https://pepy.tech/project/circuitpython-bmp180\n\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\nCircuitPython driver from BMP180 Temperature and Barometric Pressure sensor adapted from CircuitPython driver for BMP280\nDerived from the work of BadTigrou\n\nInstallation and Dependencies\n=============================\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\n\nOn supported GNU/Linux systems like the Raspberry Pi, you can install the driver locally `from\nPyPI <https://pypi.org/project/circuitpython-bmp180/>`_.\nTo install for current user:\n\n.. code-block:: shell\n\n    pip3 install circuitpython-bmp180\n\nTo install system-wide (this may be required in some cases):\n\n.. code-block:: shell\n\n    sudo pip3 install circuitpython-bmp180\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 .env/bin/activate\n    pip3 install circuitpython-qmc5883l\n\nInstalling to a Connected CircuitPython Device with Circup\n==========================================================\n\nMake sure that you have ``circup`` installed in your Python environment.\nInstall it with the following command if necessary:\n\n.. code-block:: shell\n\n    pip3 install circup\n\nWith ``circup`` installed and your CircuitPython device connected use the\nfollowing command to install:\n\n.. code-block:: shell\n\n    circup install bmp180\n\nOr the following command to update an existing version:\n\n.. code-block:: shell\n\n    circup update\n\nUsage Example\n=============\n\nTake a look a the ``bmp180_simpletest.py`` in the examples directory\n\nDocumentation\n=============\nAPI documentation for this library can be found on `Read the Docs <https://circuitpython-qmc5883l.readthedocs.io/>`_.\n\nContributing\n============\n\nContributions are welcome! Please read our `Code of Conduct\n<https://github.com/jposada202020/CircuitPython_bmp180/blob/HEAD/CODE_OF_CONDUCT.md>`_\nbefore contributing to help this project stay welcoming.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "CircuitPython driver for the bmp180 sensor",
    "version": "0.1.1",
    "split_keywords": [
        "adafruit",
        "blinka",
        "circuitpython",
        "micropython",
        "bmp180",
        "barometric",
        "pressure",
        "driver",
        "sensor"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e0585cd6a4cc553d5d19db4400cb36cd96693d1e12b99da2b2c5673588692c8a",
                "md5": "317ecc9f2600420b2bb9912cf26102b6",
                "sha256": "be9c2d711034fa4bef1eee721121472b6295c729299cf44d8a66ae4b486e360c"
            },
            "downloads": -1,
            "filename": "circuitpython_bmp180-0.1.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "317ecc9f2600420b2bb9912cf26102b6",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 6163,
            "upload_time": "2023-04-22T20:16:47",
            "upload_time_iso_8601": "2023-04-22T20:16:47.228222Z",
            "url": "https://files.pythonhosted.org/packages/e0/58/5cd6a4cc553d5d19db4400cb36cd96693d1e12b99da2b2c5673588692c8a/circuitpython_bmp180-0.1.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e702779a447a207f09c78447ca1123e262a1c7bfa2391195f93b3f98458fe0a3",
                "md5": "137363e0b50e38e00aa3f14bd1800d92",
                "sha256": "707c6b407b3eb07f8d831371e4628bcbba60783723a05fa3bee07b0d204de809"
            },
            "downloads": -1,
            "filename": "circuitpython-bmp180-0.1.1.tar.gz",
            "has_sig": false,
            "md5_digest": "137363e0b50e38e00aa3f14bd1800d92",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 30752,
            "upload_time": "2023-04-22T20:16:48",
            "upload_time_iso_8601": "2023-04-22T20:16:48.963035Z",
            "url": "https://files.pythonhosted.org/packages/e7/02/779a447a207f09c78447ca1123e262a1c7bfa2391195f93b3f98458fe0a3/circuitpython-bmp180-0.1.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-04-22 20:16:48",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "lcname": "circuitpython-bmp180"
}
        
Elapsed time: 0.07730s