It's easy to use the SHTC3 with Python or CircuitPython, and the Adafruit CircuitPython SHTC3 module. This module allows you to easily write Python code that reads humidity and temperature from the SHTC3 sensor.
You can use this sensor with any CircuitPython microcontroller board or with a computer that has GPIO and Python thanks to Adafruit_Blinka, our CircuitPython-for-Python compatibility library.
CircuitPython Microcontroller Wiring
First wire up a SHTC3 to your board exactly as shown below. Here's an example of wiring a Feather M4 to the sensor with I2C using one of the handy STEMMA QT connectors:
|
You can also use the standard 0.100" pitch headers to wire it up on a breadboard:
|
Python Computer Wiring
Since there's dozens of Linux computers/boards you can use, we will show wiring for Raspberry Pi. For other platforms, please visit the guide for CircuitPython on Linux to see whether your platform is supported.
Here's the Raspberry Pi wired to the sensor using I2C and a STEMMA QT connector:
|
Finally here is an example of how to wire up a Raspberry Pi to the sensor using a solderless breadboard
|
CircuitPython Installation of SHTC3 Library
You'll need to install the Adafruit CircuitPython SHTC3 library on your CircuitPython board.
First make sure you are running the latest version of Adafruit CircuitPython for your board.
Next you'll need to install the necessary libraries to use the hardware--carefully follow the steps to find and install these libraries from Adafruit's CircuitPython library bundle. Our CircuitPython starter guide has a great page on how to install the library bundle.
Before continuing make sure your board's lib folder or root filesystem has the adafruit_shtc3.mpy file and adafruit_bus_device folder copied over.
Next connect to the board's serial REPL so you are at the CircuitPython >>>
prompt.
Python Installation of SHTC3 Library
You'll need to install the Adafruit_Blinka library that provides the CircuitPython support in Python. This may also require enabling I2C on your platform and verifying you are running Python 3. Since each platform is a little different, and Linux changes often, please visit the CircuitPython on Linux guide to get your computer ready!
Once that's done, from your command line run the following command:
sudo pip3 install adafruit-circuitpython-shtc3
If your default Python is version 3 you may need to run 'pip' instead. Just make sure you aren't trying to use CircuitPython on Python 2.x, it isn't supported!
CircuitPython & Python Usage
To demonstrate the usage of the sensor we'll initialize it and read the temperature and humidity measurements from the board's Python REPL.
Run the following code to import the necessary modules and initialize the I2C connection with the sensor:
import busio import board import adafruit_shtc3 i2c = busio.I2C(board.SCL, board.SDA) sht = adafruit_shtc3.SHTC3(i2
Now you're ready to read values from the sensor using these properties:
- relative_humidity - The relative humidity measured by the sensor, this is a value from 0-100%.
- temperature - The temperature measured by the sensor, a value in degrees Celsius.
print("Temperature: %0.1f C" % sht.temperature) print("Humidity: %0.1f %%fH" % sht.relative_humidity)
We've also added a measurements property that simultaneously reads the temperature and relative_humidity properties and returns them as a (temperature, relative_humidity)
tuple:
print("Temperature: %0.1f C Humidity: %0.1f %%rH" % sht.measurements)
# SPDX-FileCopyrightText: Copyright (c) 2020 Bryan Siepert for Adafruit Industries # # SPDX-License-Identifier: MIT import time import busio import board import adafruit_shtc3 i2c = busio.I2C(board.SCL, board.SDA) sht = adafruit_shtc3.SHTC3(i2c) while True: temperature, relative_humidity = sht.measurements print("Temperature: %0.1f C" % temperature) print("Humidity: %0.1f %%" % relative_humidity) print("") time.sleep(1)