Skip to content

Releases: adafruit/Adafruit_CircuitPython_SHT31D

Update to .pylintrc

12 Nov 17:25
Compare
Choose a tag to compare

To use in CircuitPython, simply install the Adafruit CircuitPython bundle.

To use in CPython, pip install adafruit-circuitpython-sht31d.

Read the docs for info on how to use it.

Driver and class names changed!

07 Aug 20:07
d691567
Compare
Choose a tag to compare

The driver name has been changed to reflect the product and repo names. The class name has been updated as well. THIS CHANGES HOW YOU USE THIS LIBRARY IN YOUR CODE.

  • Drive filename is now adafruit_sht31d.py.
  • Class name is now SHT31D.

If you are using existing code, you will need to update!

To use this library, your import and setup lines will now look like the following:

import adafruit_sht31d
sensor = adafruit_sht31d.SHT31D(i2c)

Also, now on PyPi!

  • Added setup.py
  • Added PyPI release info to .travis.yml
  • Updated requirements.txt
  • Added a more comprehensive .gitignore

To use in CircuitPython, simply install the Adafruit CircuitPython bundle.

To use in CPython, pip install adafruit-circuitpython-sht31d.

Read the docs for info on how to use it.

More doc refinement

01 May 18:42
6ac2eed
Compare
Choose a tag to compare

Thanks to @sommersoft for the documentation refinement.

To use in CircuitPython, download the .mpy file and copy it to the lib folder on the CIRCUITPY drive. Or, simply install the Adafruit CircuitPython bundle.

Read the docs for info on how to use it.

Sphinx update.

22 Feb 03:38
c2a86fe
Compare
Choose a tag to compare

Thanks to @brentru for the great work!

New driver for SHT31-D!

31 Jan 04:31
d1557c8
Compare
Choose a tag to compare

Thanks to @jerryneedell for the great work!

To use, download the file from this release, or install the Adafruit CircuitPython Bundle.