Metadata-Version: 1.1
Name: pyA20
Version: 0.1.2
Summary: Control GPIOs on OLinuXino-A20.
Home-page: https://www.olimex.com/
Author: Stanimir Petev
Author-email: support@olimex.com
License: MIT
Description: This package provides class to control the GPIO on Olinuxino A20.
        Current release does no support any peripheral functions.
        
        Example
        =======
        
        Typical usage::
            
            #!/usr/bin/env python
        
            import A20_GPIO as GPIO
        
            #init module
            GPIO.init()
            
            #configure module
            GPIO.setcfg(GPIO.PIN#, GPIO.OUTPUT)
            GPIO.setcfg(GPIO.PIN#, GPIO.INPUT)
                
            #read the current GPIO configuration
            config = GPIO.getcfg(GPIO.PIN#)
            
            #set GPIO high
            GPIO.output(GPIO.PIN#, GPIO.HIGH)
            
            #set GPIO low
            GPIO.output(GPIO.PIN#, GPIO.LOW)
            
            #read input
            state = GPIO.input(GPIO.PIN#)
            
            #cleanup 
            GPIO.cleanup()
            
        
        Warning
        =======
        
            Before using this tool it is HIGHLY RECOMENDED to check Olinuxino 
            A20 schematic. 
        
        Changelog
        ===================================
            * pyA20 0.1.0 (2013-08-21)
                * Initial release
            * pyA20 0.1.2 (2013-08-23)
        	* Fixed wrong distribution uploaded
        
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python
Classifier: Topic :: Home Automation
Classifier: Topic :: Software Development :: Embedded Systems
