Metadata-Version: 1.1
Name: aosong
Version: 0.0.1
Summary: AOSONG Sensors.
Home-page: http://sopwith.ismellsmoke.net/?p=104
Author: Matt Heitzenroder
Author-email: mheitzenroder@gmail.com
License: Apache-2.0
Description: # AOSONG AM2315 Temperature and Humidity Sensor
        
        Python3 wrapper class for AOSONG AM2315 temperature/humidity sensor.
        
        ## Requirements
        
        * Python 3
        * [Quick2wire Python API](https://github.com/quick2wire/quick2wire-python-api)
        
        ## Installation
        
        ### Recommended
        ```shell
        pip install -e git+https://github.com/roder/aosong_am2315@0.0.1
        ```
        
        ### Manual
        `python setup.py install`
        
        ## Usage
        
        ```python
        TODO
        ```
        
        ### ReadSensorData()
        ReadSensorData() returns a tuple containing three values.
        
        `(41.8, 23.5, 74.3)`
        
        The first value is the current relative humidity
        The second value is the current temperature in Celsius.
        The third value is the current temperature in Fahrenheit.
        
        ### ReadTemperature()
        
        ReadTemperature() returns the current temperature in Celsius.
        
        If you want the current temperature returned in Fahrenheit pass True as a parameter.
            
        `ReadTemperature(True)`
        
        ## Test script:
        
        test_aosong_am2315.py is a unittest script you should run to ensure your sensor
        is wired correctly. If it is, you should see the below test results.
        
        `python setup.py test`
        
        ## Support
        
        Please send bugs, comments, enhancement requests to:
        [sopwith@ismellsmoke.net](mailto:sopwith@ismellsmoke.net)
        [http://sopwith.ismellsmoke.net](http://sopwith.ismellsmoke.net)
        
Platform: Linux
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Natural Language :: English
