Metadata-Version: 1.1
Name: gpio
Version: 0.1.2
Summary: gpio access via the standard linux sysfs interface
Home-page: https://github.com/cloudformdesign/gpio
Author: Garrett Berg
Author-email: garrett@cloudformdesign.com
License: MIT
Description: # Linux [sysfs](https://www.kernel.org/doc/Documentation/gpio/sysfs.txt) gpio access
        
        This library provides gpio access via the standard linux [sysfs interface](https://www.kernel.org/doc/Documentation/gpio/sysfs.txt)
        
        It is intended to mimick [RPIO](http://pythonhosted.org/RPIO/) as much as possible 
        for all features, while also supporting additional (and better named) functionality 
        to the same methods.
        
        
        ## Supported Features
        - get pin values with `read(pin)` or `input(pin)`
        - set pin values with `set(pin, value)` or `output(pin)`
        - get the pin mode with `mode(pin)`
        - set the pin mode with `setup(pin, mode)`
            - `mode` can currently equal `sysfs.IN` or `sysfs.OUT`
        
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Embedded Systems
Classifier: Topic :: Software Development :: Libraries :: Python Modules
