Python library for the Grove - ds18b20 Sensor (si114x).
Project description
Seeed_Python_Ds18b20
DS18B20 Waterproof Temperature Sensor is a digital sensor which can reach the digital data resolution up to 12 bits and has ±0.5°C accuracy from -10°C to +85°C. It includes an analog-to-digital converter to convert the analog signal to the digital output with the resolution up to 12 bits.
Dependencies
This driver depends on:
This is easy to install with the following command.
pip3 install Seeed-grove.py
Installing from PyPI
On supported GNU/Linux systems like the Raspberry Pi, you can install the driver locally from PyPI. To install for current user:
pip3 install seeed-python-Ds18b20
To install system-wide (this may be required in some cases):
sudo pip3 install seeed-python-Ds18b20
if you want to update the driver locally from PyPI. you can use:
pip3 install --upgrade seeed-python-Ds18b20
Usage
connect Ds18b20 to D5 at BaseHat.
import seeed_ds18b20
import time
def main():
DS18B20 = seeed_ds18b20.grove_ds18b20()
print("Please use Ctrl C to quit")
while True:
temp_c,temp_f = DS18B20.read_temp
print('temp_c %.2f C temp_f %.2f F' % (temp_c,temp_f),end=" ")
print('\r', end='')
time.sleep(0.5)
if __name__ == "__main__":
main()
API Reference
- uint16_t,uint16_t read_temp(void):return temperature
temp_c,temp_f = DS18B20.read_temp
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 Distributions
Built Distribution
File details
Details for the file seeed_python_Ds18b20-1.0.0-py2.py3-none-any.whl
.
File metadata
- Download URL: seeed_python_Ds18b20-1.0.0-py2.py3-none-any.whl
- Upload date:
- Size: 4.3 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7a9e8f7292ac5096c8c9c4ca1985f82846e2b82e891579eb64cb7cf620a9ef85 |
|
MD5 | 04780febeb749f7a548e3c4e68152614 |
|
BLAKE2b-256 | 36ea77ac92af4c1b6f809a23605390965084a535ec4a2ebb83417718140dc209 |