Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/robert-hh/SHT30
MicroPython driver for the SHT3x sensor.
https://github.com/robert-hh/SHT30
Last synced: 3 months ago
JSON representation
MicroPython driver for the SHT3x sensor.
- Host: GitHub
- URL: https://github.com/robert-hh/SHT30
- Owner: robert-hh
- License: apache-2.0
- Created: 2023-02-05T08:48:52.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2023-02-05T09:07:31.000Z (almost 2 years ago)
- Last Synced: 2024-04-22T13:30:48.912Z (7 months ago)
- Language: Python
- Homepage:
- Size: 5.86 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-micropython - SHT30 - MicroPython driver for the Sensirion SHT3x sensor. (Libraries / Sensors)
README
# Readme
This is a copy of a repository of Roberto Sánchez at
https://github.com/rsc1975/micropython-sht30.
The scripts are only changed to adapt it for using machine.I2C for
the interface, and removing some obsolete characters.Sample usage of the driver:
from machine import I2C, Pin
import sht30i2c=I2C(0, sda=Pin(4), scl=Pin(5))
sht=sht30.SHT30(i2c=i2c, i2c_address=68)sht.measure()
Note: The Apache license is that of the initial author. Personally
I prefer MIT.