Metadata-Version: 2.1
Name: lot
Version: 0.2.2
Summary: A module to control SBC GPIO
Home-page: https://github.com/loliot
Author: Hyeonki Hong
Author-email: hhk7734@gmail.com
License: MIT
Project-URL: Source, https://github.com/loliot/python3-lot.git
Description: # lot-python
        
        ## Installation
        
        ```bash
        sudo add-apt-repository -y ppa:loliot/ppa &&\
        sudo apt install lot
        ```
        
        ```bash
        sudo lot install
        ```
        
        ```bash
        sudo apt update &&\
        sudo apt install -y swig python3 python3-dev python3-pip &&\
        python3 -m pip install -U pip setuptools
        ```
        
        ```bash
        python3 -m pip install lot
        ```
        
        ## Blink example
        
        ```python
        import lot
        
        LED_PIN = 7
        
        lot.init(lot.PHY)
        lot.set_pin_mode(LED_PIN, lot.OUTPUT)
        
        while True:
            lot.digital_write(LED_PIN, lot.HIGH)
            lot.delay_ms(100)
            lot.digital_write(LED_PIN, lot.LOW)
            lot.delay_ms(100)
        ```
        
        ## Changelog
        
        Ref: debian/changelog
        
        python3-lot (0.2.2) unstable; urgency=medium
        
          * Fix file path error
        
         -- Hyeonki Hong <hhk7734@gmail.com>  Sun, 17 Nov 2019 13:47:35 +0000
        
        python3-lot (0.2.1) unstable; urgency=medium
        
          * Fix python package error
        
         -- Hyeonki Hong <hhk7734@gmail.com>  Sun, 17 Nov 2019 22:21:01 +0900
        
        python3-lot (0.2.0) unstable; urgency=medium
        
          * Add typemap to convert c++ typedef
          * Add lot_time.h
        
         -- Hyeonki Hong <hhk7734@gmail.com>  Sun, 17 Nov 2019 19:12:19 +0900
        
        python3-lot (0.1.3) unstable; urgency=medium
        
          * Fix TypeError.
          * Move version check from setup.cfg to setup.py.
        
         -- Hyeonki Hong <hhk7734@gmail.com>  Sun, 06 Oct 2019 16:56:29 +0900
        
        python3-lot (0.1.2) unstable; urgency=medium
        
          * Fix include path error.
        
         -- Hyeonki Hong <hhk7734@gmail.com>  Sun, 06 Oct 2019 10:27:52 +0900
        
        python3-lot (0.1.1) unstable; urgency=medium
        
          * Test basic function
          * Move setup description from setup.py to setup.cfg
        
         -- Hyeonki Hong <hhk7734@gmail.com>  Thu, 03 Oct 2019 17:36:28 +0900
        
        python3-lot (0.1.0) unstable; urgency=medium
        
          * Initial release.
        
         -- Hyeonki Hong <hhk7734@gmail.com>  Thu, 22 Aug 2019 22:03:00 +0900
        
Keywords: lot,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
