https://github.com/prdktntwcklr/python-sht31
Python library for the SHT31 temperature and humidity sensor.
https://github.com/prdktntwcklr/python-sht31
humidity-sensor python raspberry-pi sensirion sht31 temperature-sensor
Last synced: about 2 months ago
JSON representation
Python library for the SHT31 temperature and humidity sensor.
- Host: GitHub
- URL: https://github.com/prdktntwcklr/python-sht31
- Owner: prdktntwcklr
- License: mit
- Created: 2023-08-14T15:50:16.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2026-05-06T15:58:42.000Z (about 2 months ago)
- Last Synced: 2026-05-06T17:42:27.737Z (about 2 months ago)
- Topics: humidity-sensor, python, raspberry-pi, sensirion, sht31, temperature-sensor
- Language: Python
- Homepage:
- Size: 773 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SHT31 Temperature & Humidity Sensor
The SHT31 is part of a family of highly accurate temperature and humidity
sensors developed by [Sensirion AG](https://www.sensirion.com/).
## Prerequisites
On the Raspberry Pi, you first need to enable the I2C bus:
```bash
sudo raspi-config nonint do_i2c 0
```
Alternatively, you can execute `sudo raspi-config` and enable the I2C bus from
the configuration UI.
## Installing the library
You can download the most recent version of the library from the
[Releases](https://github.com/prdktntwcklr/python-sht31/releases) section and
install it using `pip`:
```bash
pip install python-sht31-0.1.1.tar.gz
```