terindo.gpio


Nameterindo.gpio JSON
Version 1.0.1 PyPI version JSON
download
home_pagehttps://github.com/terindo/OPi.GPIO
SummaryA drop-in replacement for RPi.GPIO for the Orange Pi Zero
upload_time2023-12-18 09:27:16
maintainer
docs_urlNone
authorterindo
requires_python
licenseMIT
keywords orange pi opi gpio
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI
coveralls test coverage
            Repository Enhancement
======================

The original repository for the OPi.GPIO library, available at https://github.com/rm-hull/OPi.GPIO, has been enhanced to support additional boards: Orange Pi 3B and Orange Pi Zero 3.

Key Modifications:
------------------

- **Added Support for Orange Pi 3B**
- **Added Support for Orange Pi Zero 3**

Installation
------------

To install the enhanced version of OPi.GPIO, use the following pip command:

.. code-block:: bash

    pip3 install terindo.gpio==1.0.1

Usage
-----

After installation, OPi.GPIO can be utilized in your Python code as shown below:

.. code-block:: python

    import OPi.GPIO as GPIO
    # import orangepi.zero3
    import orangepi.pi3b

    # GPIO.setmode(orangepi.zero3.BOARD)
    GPIO.setmode(orangepi.pi3b.BOARD)





OPi.GPIO
========

.. image:: https://travis-ci.org/rm-hull/OPi.GPIO.svg?branch=master
   :target: https://travis-ci.org/rm-hull/OPi.GPIO

.. image:: https://coveralls.io/repos/github/rm-hull/OPi.GPIO/badge.svg?branch=master
   :target: https://coveralls.io/github/rm-hull/OPi.GPIO?branch=master

.. image:: https://readthedocs.org/projects/opi-gpio/badge/?version=latest
   :target: http://opi-gpio.readthedocs.io/en/latest/?badge=latest

.. image:: https://img.shields.io/pypi/pyversions/OPi.GPIO.svg
   :target: https://pypi.python.org/pypi/OPi.GPIO

.. image:: https://img.shields.io/pypi/v/OPi.GPIO.svg
   :target: https://pypi.python.org/pypi/OPi.GPIO
   
.. image:: https://img.shields.io/maintenance/yes/2021.svg?maxAge=2592000

A drop-in replacement library for `RPi.GPIO <https://sourceforge.net/projects/raspberry-gpio-python/>`_
for the Orange Pi Zero and other SBCs. Only the basic GPIO functions are replicated,
using sysfs: this allows the GPIO pins to be accessed from user space.

See the `documentation <https://opi-gpio.readthedocs.io>`_ for install
instructions and detailed API usage.

References
----------
* https://www.kernel.org/doc/Documentation/gpio/sysfs.txt
* http://linux-sunxi.org/GPIO
* https://forum.armbian.com/index.php?/topic/1471-solved-difficulty-accessing-gpio-via-the-sunxi-gpio-export-interface/
* https://forum.armbian.com/index.php?/topic/3655-guide-orange-pi-zero-gpios/
* https://jsfiddle.net/tuav7f6q/2/
* https://www.mysensors.org/build/orange
* https://kaspars.net/blog/linux/orange-pi-zero-gpio
* https://developer.toradex.com/knowledge-base/pwm-linux

License
-------
The MIT License

Copyright (c) 2018 Richard Hull

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.


Contributing
------------

Pull requests (code changes / documentation / typos / feature requests / setup)
are gladly accepted. If you are intending to introduce some large-scale
changes, please get in touch first to make sure we're on the same page: try to
include a docstring for any new method or class, and keep method bodies small,
readable and PEP8-compliant. Add tests and strive to keep the code coverage
levels high.

GitHub
^^^^^^
The source code is available to clone at: https://github.com/rm-hull/OPi.GPIO

Contributors
^^^^^^^^^^^^
* Simon Rowe (@srowe)
* Steven P. Goldsmith (@sgjava)
* Adrian Cuzman (@adriancuzman)
* Mathieu Pasquet (@winterscar)
* @5kft
* Stephen Sorriaux (@StephenSorriaux)
* Michael Still (@mikalstill)
* Pascal Roeleven (@pascallj)
* Igor Pitsyn (@ipitsyn)


ChangeLog
---------

+------------+---------------------------------------------------------------------+------------+
| Version    | Description                                                         | Date       |
+============+=====================================================================+============+
| **0.5.3**  | * Add pin mappings for Radxa Zero                                   | 2022/06/20 |
|            | * Added OrangePi Zero2 pin mappings                                 |            |
+------------+---------------------------------------------------------------------+------------+
| **0.5.2**  | * Add full 40-pin header for Orange Pi 4(B)                         | 2021/10/22 |
+------------+---------------------------------------------------------------------+------------+
| **0.5.1**  | * Updated orange pi 4B mappings                                     | 2021/08/19 |
+------------+---------------------------------------------------------------------+------------+
| **0.5.0**  | * Added Hardware PWM Control                                        | 2021/04/25 |
|            | * Add support for the NanoPi M4 family                              |            |
|            | * Add pin mapping for orange pi 4 & 4B models                       |            |
|            | * Add rockpi/rockpi s packages added                                |            |
|            | * Fix OrangePi PC BCM Pin map                                       |            |
+------------+---------------------------------------------------------------------+------------+
| **0.4.0**  | * Added various new pin mappings for Orange Pi variants             | 2019/10/21 |
+------------+---------------------------------------------------------------------+------------+
| **0.3.6**  | * Expose pullup resistor constants to API users                     | 2019/01/14 |
|            | * Add pin mappings for OrangePi Prime                               |            |
+------------+---------------------------------------------------------------------+------------+
| **0.3.5**  | * Added OrangePi Lite & One pin mappings                            | 2018/11/10 |
+------------+---------------------------------------------------------------------+------------+
| **0.3.4**  | * Added more OrangePi and NanoPi pin mappings                       | 2018/09/16 |
+------------+---------------------------------------------------------------------+------------+
| **0.3.3**  | * Added waits for UDEV rules                                        | 2018/09/15 |
+------------+---------------------------------------------------------------------+------------+
| **0.3.2**  | * Added OrangePi PC pin mappings                                    | 2018/03/04 |
+------------+---------------------------------------------------------------------+------------+
| **0.3.1**  | * Added NanoPi DUO pin mappings                                     | 2018/01/01 |
+------------+---------------------------------------------------------------------+------------+
| **0.3.0**  | * Added alternate pin mappings                                      | 2017/12/31 |
+------------+---------------------------------------------------------------------+------------+
| **0.2.5**  | * sysfs: set output() value to 0 or 1                               | 2017/07/15 |
+------------+---------------------------------------------------------------------+------------+
| **0.2.4**  | * Add compatibility for pull up/down and bouncetime params          | 2017/05/27 |
+------------+---------------------------------------------------------------------+------------+
| **0.2.3**  | * Make worker threads daemonic (can't exit otherwise)               | 2017/05/26 |
+------------+---------------------------------------------------------------------+------------+
| **0.2.2**  | * ``GPIO.setup()`` catches IOError and re-exports                   | 2017/03/28 |
+------------+---------------------------------------------------------------------+------------+
| **0.2.1**  | * Minor bug fixes                                                   | 2017/03/14 |
|            | * Additional tests                                                  |            |
+------------+---------------------------------------------------------------------+------------+
| **0.2.0**  | * Added edge detection and eventing                                 | 2017/03/14 |
+------------+---------------------------------------------------------------------+------------+
| **0.1.0**  | * Initial version                                                   | 2017/03/11 |
+------------+---------------------------------------------------------------------+------------+



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/terindo/OPi.GPIO",
    "name": "terindo.gpio",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "orange pi opi gpio",
    "author": "terindo",
    "author_email": "terindo.id@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/6f/18/02c153785a629a2512a14992d149d7f6fdb5b3d8a2a09fee4fe8374e3182/terindo.gpio-1.0.1.tar.gz",
    "platform": null,
    "description": "Repository Enhancement\r\n======================\r\n\r\nThe original repository for the OPi.GPIO library, available at https://github.com/rm-hull/OPi.GPIO, has been enhanced to support additional boards: Orange Pi 3B and Orange Pi Zero 3.\r\n\r\nKey Modifications:\r\n------------------\r\n\r\n- **Added Support for Orange Pi 3B**\r\n- **Added Support for Orange Pi Zero 3**\r\n\r\nInstallation\r\n------------\r\n\r\nTo install the enhanced version of OPi.GPIO, use the following pip command:\r\n\r\n.. code-block:: bash\r\n\r\n    pip3 install terindo.gpio==1.0.1\r\n\r\nUsage\r\n-----\r\n\r\nAfter installation, OPi.GPIO can be utilized in your Python code as shown below:\r\n\r\n.. code-block:: python\r\n\r\n    import OPi.GPIO as GPIO\r\n    # import orangepi.zero3\r\n    import orangepi.pi3b\r\n\r\n    # GPIO.setmode(orangepi.zero3.BOARD)\r\n    GPIO.setmode(orangepi.pi3b.BOARD)\r\n\r\n\r\n\r\n\r\n\r\nOPi.GPIO\r\n========\r\n\r\n.. image:: https://travis-ci.org/rm-hull/OPi.GPIO.svg?branch=master\r\n   :target: https://travis-ci.org/rm-hull/OPi.GPIO\r\n\r\n.. image:: https://coveralls.io/repos/github/rm-hull/OPi.GPIO/badge.svg?branch=master\r\n   :target: https://coveralls.io/github/rm-hull/OPi.GPIO?branch=master\r\n\r\n.. image:: https://readthedocs.org/projects/opi-gpio/badge/?version=latest\r\n   :target: http://opi-gpio.readthedocs.io/en/latest/?badge=latest\r\n\r\n.. image:: https://img.shields.io/pypi/pyversions/OPi.GPIO.svg\r\n   :target: https://pypi.python.org/pypi/OPi.GPIO\r\n\r\n.. image:: https://img.shields.io/pypi/v/OPi.GPIO.svg\r\n   :target: https://pypi.python.org/pypi/OPi.GPIO\r\n   \r\n.. image:: https://img.shields.io/maintenance/yes/2021.svg?maxAge=2592000\r\n\r\nA drop-in replacement library for `RPi.GPIO <https://sourceforge.net/projects/raspberry-gpio-python/>`_\r\nfor the Orange Pi Zero and other SBCs. Only the basic GPIO functions are replicated,\r\nusing sysfs: this allows the GPIO pins to be accessed from user space.\r\n\r\nSee the `documentation <https://opi-gpio.readthedocs.io>`_ for install\r\ninstructions and detailed API usage.\r\n\r\nReferences\r\n----------\r\n* https://www.kernel.org/doc/Documentation/gpio/sysfs.txt\r\n* http://linux-sunxi.org/GPIO\r\n* https://forum.armbian.com/index.php?/topic/1471-solved-difficulty-accessing-gpio-via-the-sunxi-gpio-export-interface/\r\n* https://forum.armbian.com/index.php?/topic/3655-guide-orange-pi-zero-gpios/\r\n* https://jsfiddle.net/tuav7f6q/2/\r\n* https://www.mysensors.org/build/orange\r\n* https://kaspars.net/blog/linux/orange-pi-zero-gpio\r\n* https://developer.toradex.com/knowledge-base/pwm-linux\r\n\r\nLicense\r\n-------\r\nThe MIT License\r\n\r\nCopyright (c) 2018 Richard Hull\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in all\r\ncopies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\nSOFTWARE.\r\n\r\n\r\nContributing\r\n------------\r\n\r\nPull requests (code changes / documentation / typos / feature requests / setup)\r\nare gladly accepted. If you are intending to introduce some large-scale\r\nchanges, please get in touch first to make sure we're on the same page: try to\r\ninclude a docstring for any new method or class, and keep method bodies small,\r\nreadable and PEP8-compliant. Add tests and strive to keep the code coverage\r\nlevels high.\r\n\r\nGitHub\r\n^^^^^^\r\nThe source code is available to clone at: https://github.com/rm-hull/OPi.GPIO\r\n\r\nContributors\r\n^^^^^^^^^^^^\r\n* Simon Rowe (@srowe)\r\n* Steven P. Goldsmith (@sgjava)\r\n* Adrian Cuzman (@adriancuzman)\r\n* Mathieu Pasquet (@winterscar)\r\n* @5kft\r\n* Stephen Sorriaux (@StephenSorriaux)\r\n* Michael Still (@mikalstill)\r\n* Pascal Roeleven (@pascallj)\r\n* Igor Pitsyn (@ipitsyn)\r\n\r\n\r\nChangeLog\r\n---------\r\n\r\n+------------+---------------------------------------------------------------------+------------+\r\n| Version    | Description                                                         | Date       |\r\n+============+=====================================================================+============+\r\n| **0.5.3**  | * Add pin mappings for Radxa Zero                                   | 2022/06/20 |\r\n|            | * Added OrangePi Zero2 pin mappings                                 |            |\r\n+------------+---------------------------------------------------------------------+------------+\r\n| **0.5.2**  | * Add full 40-pin header for Orange Pi 4(B)                         | 2021/10/22 |\r\n+------------+---------------------------------------------------------------------+------------+\r\n| **0.5.1**  | * Updated orange pi 4B mappings                                     | 2021/08/19 |\r\n+------------+---------------------------------------------------------------------+------------+\r\n| **0.5.0**  | * Added Hardware PWM Control                                        | 2021/04/25 |\r\n|            | * Add support for the NanoPi M4 family                              |            |\r\n|            | * Add pin mapping for orange pi 4 & 4B models                       |            |\r\n|            | * Add rockpi/rockpi s packages added                                |            |\r\n|            | * Fix OrangePi PC BCM Pin map                                       |            |\r\n+------------+---------------------------------------------------------------------+------------+\r\n| **0.4.0**  | * Added various new pin mappings for Orange Pi variants             | 2019/10/21 |\r\n+------------+---------------------------------------------------------------------+------------+\r\n| **0.3.6**  | * Expose pullup resistor constants to API users                     | 2019/01/14 |\r\n|            | * Add pin mappings for OrangePi Prime                               |            |\r\n+------------+---------------------------------------------------------------------+------------+\r\n| **0.3.5**  | * Added OrangePi Lite & One pin mappings                            | 2018/11/10 |\r\n+------------+---------------------------------------------------------------------+------------+\r\n| **0.3.4**  | * Added more OrangePi and NanoPi pin mappings                       | 2018/09/16 |\r\n+------------+---------------------------------------------------------------------+------------+\r\n| **0.3.3**  | * Added waits for UDEV rules                                        | 2018/09/15 |\r\n+------------+---------------------------------------------------------------------+------------+\r\n| **0.3.2**  | * Added OrangePi PC pin mappings                                    | 2018/03/04 |\r\n+------------+---------------------------------------------------------------------+------------+\r\n| **0.3.1**  | * Added NanoPi DUO pin mappings                                     | 2018/01/01 |\r\n+------------+---------------------------------------------------------------------+------------+\r\n| **0.3.0**  | * Added alternate pin mappings                                      | 2017/12/31 |\r\n+------------+---------------------------------------------------------------------+------------+\r\n| **0.2.5**  | * sysfs: set output() value to 0 or 1                               | 2017/07/15 |\r\n+------------+---------------------------------------------------------------------+------------+\r\n| **0.2.4**  | * Add compatibility for pull up/down and bouncetime params          | 2017/05/27 |\r\n+------------+---------------------------------------------------------------------+------------+\r\n| **0.2.3**  | * Make worker threads daemonic (can't exit otherwise)               | 2017/05/26 |\r\n+------------+---------------------------------------------------------------------+------------+\r\n| **0.2.2**  | * ``GPIO.setup()`` catches IOError and re-exports                   | 2017/03/28 |\r\n+------------+---------------------------------------------------------------------+------------+\r\n| **0.2.1**  | * Minor bug fixes                                                   | 2017/03/14 |\r\n|            | * Additional tests                                                  |            |\r\n+------------+---------------------------------------------------------------------+------------+\r\n| **0.2.0**  | * Added edge detection and eventing                                 | 2017/03/14 |\r\n+------------+---------------------------------------------------------------------+------------+\r\n| **0.1.0**  | * Initial version                                                   | 2017/03/11 |\r\n+------------+---------------------------------------------------------------------+------------+\r\n\r\n\r\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "A drop-in replacement for RPi.GPIO for the Orange Pi Zero",
    "version": "1.0.1",
    "project_urls": {
        "Download": "https://github.com/terindo/OPi.GPIO/tarball/1.0.1",
        "Homepage": "https://github.com/terindo/OPi.GPIO"
    },
    "split_keywords": [
        "orange",
        "pi",
        "opi",
        "gpio"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6f1802c153785a629a2512a14992d149d7f6fdb5b3d8a2a09fee4fe8374e3182",
                "md5": "0a3e1525f8a2f46d97a1963406318d56",
                "sha256": "897875a443c6c99b26b5b945a7a72edadb6e0699a1e1e7126efab668ed65ede4"
            },
            "downloads": -1,
            "filename": "terindo.gpio-1.0.1.tar.gz",
            "has_sig": false,
            "md5_digest": "0a3e1525f8a2f46d97a1963406318d56",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 306493,
            "upload_time": "2023-12-18T09:27:16",
            "upload_time_iso_8601": "2023-12-18T09:27:16.567667Z",
            "url": "https://files.pythonhosted.org/packages/6f/18/02c153785a629a2512a14992d149d7f6fdb5b3d8a2a09fee4fe8374e3182/terindo.gpio-1.0.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-12-18 09:27:16",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "terindo",
    "github_project": "OPi.GPIO",
    "travis_ci": true,
    "coveralls": true,
    "github_actions": false,
    "tox": true,
    "lcname": "terindo.gpio"
}
        
Elapsed time: 0.17054s