Metadata-Version: 2.1
Name: pmw3901
Version: 0.1.0
Summary: Python library for the PMW3901 optical flow sensor
Home-page: http://www.pimoroni.com
Author: Philip Howard
Author-email: phil@pimoroni.com
License: MIT
Project-URL: GitHub, https://www.github.com/pimoroni/pmw3901-python
Description: # PMW3901 / PAA5100JE 2-Dimensional Optical Flow Sensor
        
        [![Build Status](https://travis-ci.com/pimoroni/pmw3901-python.svg?branch=master)](https://travis-ci.com/pimoroni/pmw3901-python)
        [![Coverage Status](https://coveralls.io/repos/github/pimoroni/pmw3901-python/badge.svg?branch=master)](https://coveralls.io/github/pimoroni/pmw3901-python?branch=master)
        [![PyPi Package](https://img.shields.io/pypi/v/pmw3901.svg)](https://pypi.python.org/pypi/pmw3901)
        [![Python Versions](https://img.shields.io/pypi/pyversions/pmw3901.svg)](https://pypi.python.org/pypi/pmw3901)
        
        
        # Installing
        
        Stable library from PyPi:
        
        * Just run `sudo pip install pmw3901`
        
        Latest/development library from GitHub:
        
        * `git clone https://github.com/pimoroni/pmw3901-python`
        * `cd pmw3901-python`
        * `sudo ./install.sh`
        
        # Usage
        
        The PAA5100JE has a slightly different init routine to the PMW3901, you should use the class provided to ensure it's set up correctly:
        
        ```
        from pmw3901 import PAA5100
        ```
        
        And for the PMW3901, continue using the old class:
        
        ```
        from pmw3901 import PMW3901
        ```
        
        The example `motion.py` demonstrates setting up either sensor, and accepts a `--board` argument to specify which you'd like to use.
        
        # Changelog
        0.1.0
        -----
        
        * Add init support for PAA5100JE
        * Add frame capture support
        
        0.0.1
        -----
        
        * Initial Release
        
Keywords: Raspberry Pi
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Operating System :: POSIX :: Linux
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development
Classifier: Topic :: System :: Hardware
Description-Content-Type: text/markdown
