Metadata-Version: 2.0
Name: PiPocketGeiger
Version: 0.3
Summary: A library for monitoring radiation with the Radiation Watch Pocket Geiger.
Home-page: https://github.com/MonsieurV/PiPocketGeiger
Author: Yoan Tournade
Author-email: yoan@ytotech.com
License: MIT
Platform: any
Requires-Dist: RPi.GPIO (>=0.5.0a)
Provides-Extra: dev
Requires-Dist: flake8; extra == 'dev'
Requires-Dist: pylint; extra == 'dev'

==============
PiPocketGeiger
==============

Radiation Watch Pocket Geiger Type 5 library for Raspberry Pi.

Usage
=====
::

    from PiPocketGeiger import RadiationWatch
    import time

    with RadiationWatch(24, 23) as radiationWatch:
        while 1:
            print(radiationWatch.status())
            time.sleep(5)


See GitHub repository for complete documentation.


