Library to read si7021 sensor.
Project description
pi_si7021
Library for playing around with si7021 relative humidity and temperature sensor with Raspberry Pi. Based on pigpio example.
Usage
from pi_si7021 import Si7021
RHTEMP = Si7021()
print("Temperature: " + str(round(RHTEMP.temperature, 2)) + u" \u00B0C")
print("Relative humidity: " + str(round(RHTEMP.relative_humidity, 2)) + " %")
RHTEMP.close()
Testing
Run unit tests with commands:
cd pi_si7021
python3 -m unittest discover -s tst/
Get test coverage with commands:
cd pi_si7021
coverage run -m unittest discover -s tst/
coverage report -m
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pi_si7021-0.5.4.tar.gz
(2.1 kB
view details)
File details
Details for the file pi_si7021-0.5.4.tar.gz
.
File metadata
- Download URL: pi_si7021-0.5.4.tar.gz
- Upload date:
- Size: 2.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 79cea0187cf2b85f6bed0bdf998dc59850529d739efe26d5babf2a5372f7cd2c |
|
MD5 | 6f8f130505c66a8cf66052f51e9ee854 |
|
BLAKE2b-256 | 39b75339bd5dc9f22767617e2e6718e29216d2da5805a9b0517c6ae8b535a836 |