Metadata-Version: 2.1
Name: pymodi
Version: 0.9.3
Summary: Easy😆 and fast💨 MODI Python API package.
Home-page: https://github.com/LUXROBO/pymodi
Author: LUXROBO
Author-email: tech@luxrobo.com
License: MIT
Description: <p align="center">
        	<img src="https://github.com/k2sebeom/pymodi/blob/feature/pymodi-logo/docs/_static/img/Logo3.JPG" width="500" height="150">
        </p>
        
        ---------
        
        [![image](https://img.shields.io/pypi/pyversions/pymodi.svg)](https://pypi.python.org/pypi/pymodi)
        [![image](https://img.shields.io/pypi/v/pymodi.svg)](https://pypi.python.org/pypi/pymodi)
        [![Travis](https://img.shields.io/travis/LUXROBO/pymodi/master.svg?label=Travis%20CI)](https://travis-ci.org/LUXROBO/pymodi)
        [![Documentation Status](https://readthedocs.org/projects/pymodi/badge/?version=latest)](https://pymodi.readthedocs.io/en/latest/?badge=latest)
        [![Coverage Status](https://coveralls.io/repos/github/LUXROBO/pymodi/badge.svg)](https://coveralls.io/github/LUXROBO/pymodi)
        [![Maintainability](https://api.codeclimate.com/v1/badges/5a62f1585d723099e337/maintainability)](https://codeclimate.com/github/LUXROBO/pymodi/maintainability)
        [![License](https://img.shields.io/pypi/l/pymodi.svg?color=blue)](https://github.com/LUXROBO/pymodi/blob/master/LICENSE)
        
        Description
        -------
        Easy😆 and fast💨 MODI Python API package.
        
        -   Free software: MIT license
        -   Documentation: <https://pymodi.readthedocs.io>.
        
        Features
        --------
        -   Connect to the MODI network module and control input & output
            modules.
        -   List serial ports of MODI network modules.
        -   Turn on or off the PnP mode of MODI modules.
        -   Get the position information of each modules.
        
        UML Diagram
        --------
        <p align="center">
        <img src="https://gituml-media.s3.amazonaws.com/production_diagram_201.svg?AWSAccessKeyId=AKIA5BNPSF2PVKDZ4QNO&Signature=5dzm1VMNGOYCgtYIIwk%2BPTQRx8A%3D&Expires=1590641498" width="800" height="500">
        </p>
        
        Build Status
        --------
        
        |master|develop|
        |:---:|:---:|
        |[![image](https://travis-ci.org/LUXROBO/pymodi.svg?branch=master)](https://travis-ci.org/LUXROBO/pymodi)|[![image](https://travis-ci.org/LUXROBO/pymodi.svg?branch=develop)](https://travis-ci.org/LUXROBO/pymodi)|
        
        System Support
        ---------
        | System | 3.6 | 3.7 | 3.8 |
        | :---: | :---: | :---: | :--: |
        | Linux | [![Build Status](https://travis-matrix-badges.herokuapp.com/repos/LUXROBO/pymodi/branches/master/3)](https://travis-ci.org/LUXROBO/pymodi) | [![Build Status](https://travis-matrix-badges.herokuapp.com/repos/LUXROBO/pymodi/branches/master/2)](https://travis-ci.org/LUXROBO/pymodi) | [![Build Status](https://travis-matrix-badges.herokuapp.com/repos/LUXROBO/pymodi/branches/master/1)](https://travis-ci.org/LUXROBO/pymodi) |
        | Mac OS | [![Build Status](https://travis-matrix-badges.herokuapp.com/repos/LUXROBO/pymodi/branches/master/6)](https://travis-ci.org/LUXROBO/pymodi) | [![Build Status](https://travis-matrix-badges.herokuapp.com/repos/LUXROBO/pymodi/branches/master/5)](https://travis-ci.org/LUXROBO/pymodi) | [![Build Status](https://travis-matrix-badges.herokuapp.com/repos/LUXROBO/pymodi/branches/master/4)](https://travis-ci.org/LUXROBO/pymodi) |
        | Windows | [![Build Status](https://travis-matrix-badges.herokuapp.com/repos/LUXROBO/pymodi/branches/master/9)](https://travis-ci.org/LUXROBO/pymodi) | [![Build Status](https://travis-matrix-badges.herokuapp.com/repos/LUXROBO/pymodi/branches/master/8)](https://travis-ci.org/LUXROBO/pymodi) | [![Build Status](https://travis-matrix-badges.herokuapp.com/repos/LUXROBO/pymodi/branches/master/7)](https://travis-ci.org/LUXROBO/pymodi) |
        
        Contribution Guidelines
        --------
        We appreciate all contributions. If you are planning to report bugs, please do so at <https://github.com/LUXROBO/pymodi/issues>. Feel free to fork our repository to your local environment, and please send us feedback by filing an issue.
        
        If you want to contribute to pymodi, be sure to review the contribution guidelines. This project adheres to pymodi's code of conduct. By participating, you are expected to uphold this code.
        
        [![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-v2.0%20adopted-ff69b4.svg)](CODE_OF_CONDUCT.md)
        
        Quickstart
        --------
        
        Install the latest PyMODI if you haven\'t installed it yet:
        
            pip install -U pymodi --user
        
        You can also install PyMODI at develop branch with:
        
            pip install git+https://github.com/LUXROBO/pymodi.git@develop --user
        
        Import [modi]{.title-ref} package and create [MODI]{.title-ref}
        instance:
        
            import modi
            bundle = modi.MODI(nb_modules=1)
        
        List connected modules:
        
            bundle.modules
        
        List connected LED modules and pick the first one:
        
            bundle.leds # List.
            bundle.leds[0] # Pick.
        
        Let\'s blink the LED\'s light 5 times:
        
            import time
        
            led = bundle.leds[0]
        
            for _ in range(5):
                led.set_on()
                time.sleep(1)
                led.set_off()
                time.sleep(1)
        
        If you are still not sure how to use PyMODI, you can play an interactive PyMODI tutorial by running a command of
        
            $ python -m modi --tutorial
            
        
        History
        =======
        
        0.1.0 (2018-06-28)
        ------------------
        -   First release on in-house GitLab.
        
        0.1.1 (2018-07-20)
        ------------------
        -   Requirements fix.
        -   Packages\' include path fix.
        
        0.1.2 (2018-07-23)
        ------------------
        -   Python 3.4 support.
        
        0.2.0 (2018-07-25)
        ------------------
        -   Speaker module support.
        -   Display module support.
        
        0.2.1 (2018-07-27)
        ------------------
        -   Add speaker module\'s tune() and off() methods.
        -   Remove duplicated codes.
        
        0.3.0 (2018-07-28)
        ------------------
        -   Support python 2.7.
        -   Speed up the performance.
        
        0.3.1 (2018-07-28)
        ------------------
        -   Requirements fix.
        
        0.4.0 (2018-08-20)
        ------------------
        -   Performance improvement.
        -   The first documentation complete.
        
        0.5.0 (2018-08-22)
        ------------------
        -   Change the project name to pyMODI.
        
        0.5.1 (2018-11-07)
        ------------------
        -   Fix \#26 (No MODI network module connected) issue.
        
        0.5.2 (2019-10-11)
        ------------------
        -   Can control a pair of motors of the motor module by torque(),
            speed(), angle().
        
        0.6.0 (2019-10-18)
        ------------------
        -   Performance improvement.
        -   Bug fixes.
        
        0.7.0 (2020-01-23)
        ------------------
        -   Implement individual motor control.
        -   Implement set variable method in display.
        -   Implement test cases for each modi modules.
        -   Implement multiprocessing version of pymodi.
        -   Bug fixes.
        
        0.7.1 (2020-02-07)
        ------------------
        -   Refactor file structures.
        -   Bug fixes.
        
        0.8.0 (2020-05-07)
        ------------------
        -   Implement Can Message Handler.
        -   Implement Topology Manager.
        -   Improve connection reliability by separating receiving and sending operations.
        -   Bug fixes.
        
Keywords: pymodi,modi,luxrobo
Platform: UNKNOWN
Classifier: Natural Language :: English
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: Science/Research
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: License :: OSI Approved :: MIT License
Description-Content-Type: text/markdown
