Metadata-Version: 2.1
Name: Odroid.GPIO
Version: 0.1.2
Summary: "A module to control Odroid GPIO channels"
Home-page: https://github.com/hhk7734
Author: Hyeonki Hong
Author-email: hhk7734@gmail.com
License: MIT
Project-URL: Source, https://github.com/hhk7734/Odroid.GPIO
Description: ![license](https://img.shields.io/github/license/hhk7734/Odroid.GPIO)
        ![pypi](https://img.shields.io/pypi/v/Odroid.GPIO)
        ![language](https://img.shields.io/github/languages/top/hhk7734/Odroid.GPIO)
        
        # Odroid.GPIO
        
        ## Installation
        
        ```shell
        sudo apt update \
        && sudo apt install -y python3 python3-dev python3-pip \
            odroid-wiringpi libwiringpi-dev
        ```
        
        ```bash
        python3 -m pip install -U --user pip Odroid.GPIO
        ```
        
        ## Blink example
        
        ```python
        import Odroid.GPIO as GPIO
        # You can also use 'import RPi.GPIO as GPIO'.
        import time
        
        '''
        GPIO.BCM == GPIO.SOC
        GPIO.BOARD
        GPIO.WIRINGPI
        '''
        GPIO.setmode(GPIO.BOARD)
        
        GPIO.setup(13, GPIO.OUT)
        
        while True:
            GPIO.output(13, GPIO.HIGH)
            time.sleep(1)
            GPIO.output(13, GPIO.LOW)
            time.sleep(1)
        ```
        
        ## Changelog
        
        Ref: CHANGELOG
        
        Odroid.GPIO (0.1.2) unstable; urgency=medium
        
          * Update MANIFEST.in
        
         -- Hyeonki Hong <hhk7734@gmail.com>  Sat, 21 Mar 2020 18:37:40 +0900
        
        Odroid.GPIO (0.1.1) unstable; urgency=medium
        
          * Correct package name
        
         -- Hyeonki Hong <hhk7734@gmail.com>  Sat, 21 Mar 2020 18:27:22 +0900
        
        Odroid.GPIO (0.1.0) unstable; urgency=medium
        
          * Bind wiringPi using Pybind11
        
         -- Hyeonki Hong <hhk7734@gmail.com>  Sat, 21 Mar 2020 17:37:21 +0900
        
Keywords: odroid,gpio
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX :: Linux
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development
Classifier: Topic :: System :: Hardware
Description-Content-Type: text/markdown
