Metadata-Version: 1.0
Name: RPi.GPIO
Version: 0.0.3a
Summary: A class to control Raspberry Pi GPIO channels
Home-page: http://code.google.com/p/raspberry-gpio-python/
Author: Ben Croston
Author-email: ben@croston.org
License: MIT
Description: This package provides a class to control the GPIO on a Raspberry Pi.
        
        Note that this module is unsuitable for real-time or timing critical applications.
        
        Example Usage :
        
        ::
        
            import RPi.GPIO as GPIO
        
            # set up the GPIO channels - one input and one output
            GPIO.setup(0, GPIO.IN)
            GPIO.setup(1, GPIO.OUT)
        
            # input from channel 0
            input_value = GPIO.input(0)
        
            # output to channel 1
            GPIO.output(1, True)
        
        Change Log
        ==========
        
        0.0.3a
        ------
        - Added GPIO table
        - Refactored
        - Fixed a few critical bugs
        - Still completely untested!
        
        0.0.2a
        ------
        - Internal refactoring.  Still completely untested!
        
        0.0.1a
        ------
        - First version.  Completely untested until I can get hold of a Raspberry Pi!
        
        
Keywords: Raspberry Pi GPIO
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Operating System :: POSIX :: Linux
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development
Classifier: Topic :: Home Automation
Classifier: Topic :: System :: Hardware
