Metadata-Version: 2.1
Name: pyImpinj
Version: 1.2
Summary: Library for Impinj R2000 Reader
Home-page: https://github.com/hex-in/pyImpinj
Author: Heyn
Author-email: heyunhuan@gmail.com
License: MIT
Keywords: Impinj,R2000
Platform: any
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Dist: pyserial (>=3.4)
Requires-Dist: libscrc (==0.1.6)

Impinj R2000 protocol. 
=========================

    pyImpinj is a protocol library for R2000 reader.


Installation
------------

* Compile and install the library::

    pip3 install pyImpinj

Usage
-----

* In Python 3

    from pyImpinj import ImpinjR2KReader


Example
-------

    **from pyImpinj import ImpinjR2KReader**

    TAG_QUEUE = queue.Queue( 1024 )

    R2000 = ImpinjR2KReader( TAG_QUEUE, address=1 )

    R2000.connect( 'COM9' )

    R2000.worker_start()

    R2000.rt_inventory( repeat=100 )

    print( TAG_QUEUE.get( ) )

V1.2 (2020-02-27)
-----------------

* Release ver1.2

    New add get(set)_frequency_region  

    New add set_frequency_region_user  

    New add test/auto_config.py

V1.1 (2020-02-20)
-----------------

* Release ver1.1



