Metadata-Version: 1.1
Name: hcsr04sensor
Version: 1.1.4
Summary: Module to access the HCSR04 sensor on a Raspberry Pi
Home-page: https://github.com/alaudet/hcsr04sensor
Author: Al Audet
Author-email: alaudet@linuxnorth.org
License: MIT License
Download-URL: https://github.com/alaudet/hcsr04sensor/releases
Description: HC-SR04 Ultrasonic Sensor on Raspberry Pi
        =========================================
        
        A simple module for calculating distance and depth measurements with an HCSR04 Ultrasonic Sound Sensor and a Raspberry Pi.
        
        
        Install
        =======
        
            sudo pip install hcsr04sensor
        
        Description
        ===========
        The module does the following;
        
        * Returns an error corrected distance by using the median reading of a sorted
          sample. NOTE - The default sample size is 11 readings.  You can specify a
          different sample size by passing sample_size=x  to raw_distance (where x is your desired
          number of readings).  This is useful if you need to lower the sample size to take
          quicker readings.  Beware that the probability of getting erroneous readings
          increases as sample size is reduced.
        
        * Rounds the value to a specified decimal place.
        
        * Adjusts the reading based on temperature by adjusting the speed of sound.
        
        * Allows measuring distance and depth in metric and imperial units.  See;
        
            pydoc hcsr04sensor.sensor
        
        Usage
        =====
        
        See example scripts in https://github.com/alaudet/hcsr04sensor/tree/master/examples.
        
        Access to Raspberry Pi GPIO pins require elevated priviledges.  Run example
        scripts with sudo.
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: End Users/Desktop
Classifier: Natural Language :: English
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 2 :: Only
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Home Automation
Classifier: License :: OSI Approved :: MIT License
