Metadata-Version: 1.0
Name: pyA13
Version: 0.1.5
Summary: Control GPIOs on OLinuXino-A13.
Home-page: https://www.olimex.com/
Author: Stefan Mavrodiev
Author-email: support@olimex.com
License: LICENSE.txt
Description: This package provides class to control the GPIO on Olinuxino A13.
        Current release does no support any peripheral functions.
        
        Example
        =======
        
        Typical usage::
            
            #!/usr/bin/env python
        
            import A13_GPIO as GPIO
        
            #init module
            GPIO.init()
            
            #configure module
            GPIO.setcfg(NUMBER, VALUE)
                
            #read the current GPIO configuration
            config = GPIO.getcfg(NUMBER)
            
            #set GPIO high
            GPIO.output(NUMBER, HIGH)
            
            #set GPIO low
            GPIO.output(NUMBER, LOW)
            
            #cleanup 
            GPIO.cleanup()
            
        Where:
            
            * NUMBER - is the GPIO number (0, 1, 2, 3 ...)
            
            * VALUE - can be:
            
                * INPUT
                * OUTPUT
                * PER (Not fully working)
        
        
        Thanks also to: bianchina3
        
        
        pyA13 0.1.5 (2013-03-01)
        ===================================
        
         * Fixed bug with initialization
        
        
        pyA13 0.1.4 (2013-03-01)
        ===================================
        
         * Fixed some setup bugs
         * Removed bugged methods
         * Fixed readme
        
        pyA13 0.1.0 (2013-03-01)
        ===================================
        
         * Initial release
        
        
Platform: UNKNOWN
