Metadata-Version: 1.0
Name: RPIO
Version: 0.9.2
Summary: Advanced GPIO for the Raspberry Pi. Extends RPi.GPIO with GPIO interrups, TCP socket interrupts, a command line tool and more
Home-page: https://github.com/metachris/RPIO
Author: Chris Hager
Author-email: chris@linuxuser.at
License: MIT
Description: RPIO is an advanced GPIO module for the Raspberry Pi.
        
        * GPIO input and output (drop-in replacement for `RPi.GPIO <http://pypi.python.org/pypi/RPi.GPIO>`_)
        * GPIO interrupts (callbacks when events occur on input gpios)
        * TCP socket interrupts (callbacks when tcp socket clients send data)
        * PWM via DMA (up to 1µs resolution; 500kHz)
        * Command-line tools ``rpio`` and ``rpio-curses``
        * Well documented, fast source code with minimal CPU usage
        * Open source (GPLv3+)
        
        
        `Visit pythonhosted.org/RPIO for the documentation. <http://pythonhosted.org/RPIO>`_
        
        
        Installation
        ------------
        
        The easiest way to install/update RPIO on a Raspberry Pi is with either ``easy_install`` or ``pip``::
        
            $ sudo apt-get install python-setuptools
            $ sudo easy_install -U RPIO
        
        After the installation you can use ``import RPIO`` as well as the command-line tools ``rpio`` and ``rpio-curses``.
        
        
        Examples
        --------
        
        You can find lots of examples inside the `documentation <http://pythonhosted.org/RPIO>`_, as well as in the `/examples/ source directory <https://github.com/metachris/RPIO/tree/master/examples>`_.
        
        
        Feedback
        --------
        
        Please send feedback and ideas to chris@linuxuser.at, and `open an issue at Github <https://github.com/metachris/RPIO/issues/new>`_
        if you've encountered a bug.
        
        
        License
        -------
        
            RPIO is free software: you can redistribute it and/or modify
            it under the terms of the GNU General Public License as published by
            the Free Software Foundation, either version 3 of the License, or
            (at your option) any later version.
        
            RPIO is distributed in the hope that it will be useful,
            but WITHOUT ANY WARRANTY; without even the implied warranty of
            MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
            GNU General Public License for more details.
        
        
        Links
        -----
        
        * http://pythonhosted.org/RPIO
        * http://pypi.python.org/pypi/RPIO
        * http://pypi.python.org/pypi/RPi.GPIO
        * http://www.raspberrypi.org/wp-content/uploads/2012/02/BCM2835-ARM-Peripherals.pdf
        * http://www.kernel.org/doc/Documentation/gpio.txt
        
Keywords: raspberry,raspberry pi,interrupts,gpio,rpio
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: POSIX :: Linux
Classifier: Topic :: Utilities
Classifier: Topic :: Software Development
Classifier: Topic :: Home Automation
Classifier: Topic :: System :: Hardware
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: License :: Other/Proprietary License
