pi-hcsr501

Library to read hcsr501 sensor.


License
MIT
Install
pip install pi-hcsr501==0.5.1

Documentation

pi_hcsr501

Build Status

Library for playing around with hcsr501 PIR motion sensor with Raspberry Pi.

Usage

from pi_hcsr501 import HcSr501

HCSR501 = HcSr501()

while True:
	print(str(HCSR501.active) + " ", end="\r")
	sleep(0.5)

Testing

Run unit tests with command:

cd pi_hcsr501

python3 -m unittest discover -s tst/

Get test coverage with commands:

cd pi_hcsr501

coverage run -m unittest discover -s tst/
coverage report -m