Skip to content

robert-hh/SHT30

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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 sht30

i2c=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.

About

MicroPython driver for the SHT3x sensor.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages