# Adafruit Si7021 Temperature + Humidity Sensor

## Overview

![](https://cdn-learn.adafruit.com/assets/assets/000/094/441/medium800/temperature___humidity_SI7021_top_angle.jpg?1598555653)

It's summer and you're sweating and your hair's all frizzy and all you really want to know is why the weatherman said this morning that today's relative humidity would max out at a perfectly reasonable 42% when it feels more like 77%. Enter the&nbsp; **Si7021 Temperature + Humidity Sensor** &nbsp;- the best way to prove the weatherman wrong!

This lovely sensor for Silicon labs has ± 3% relative humidity measurements with a range of 0–80% RH, and ±0.4 °C temperature accuracy at a range of -10 to +85 °C. Great for all of your environmental sensing projects. It uses I2C for data transfer so it works with a wide range of microcontrollers.

![](https://cdn-learn.adafruit.com/assets/assets/000/094/440/medium800/temperature___humidity_SI7021_STEMMA_side.jpg?1598555645)

To get you going fast, we spun up a custom made PCB in the[**STEMMA QT** form factor](https://www.adafruit.com/?q=stemma%20qt%20sensor "STEMMA QT form factor"), making them easy to interface with. The [STEMMA QT connectors](https://learn.adafruit.com/introducing-adafruit-stemma-qt/what-is-stemma-qt) on either side are compatible with the [SparkFun Qwiic](https://www.sparkfun.com/qwiic) I2C connectors. This allows you to make solderless connections between your development board and the LIS331s or to chain them with a wide range of other sensors and accessories using a [**compatible cable**](https://www.adafruit.com/?q=stemma%20qt%20cable). We’ve of course broken out all the pins to standard headers and added a voltage regulator and level shifting so allow you to use it with either 3.3V or 5V systems such as the Raspberry Pi + Feather series or Arduino Uno respectively.

![](https://cdn-learn.adafruit.com/assets/assets/000/094/439/medium800/temperature___humidity_SI7021_top_header.jpg?1598555636)

There's a PTFE filter to keep the sensor clean, that's the white flat thing on top. Also comes with some pin header. Some light soldering is required to attach the header for use in a breadboard but it's easy to do.

Info: 

![](https://cdn-learn.adafruit.com/assets/assets/000/035/905/medium800/temperature_3251-01.jpg?1474571034)

# Adafruit Si7021 Temperature + Humidity Sensor

## Pinouts

The Si7021 is a I2C sensor. That means it uses the two I2C data/clock wires available on most microcontrollers, and can share those pins with other sensors as long as they don't have an address collision. For future reference, the I2C address is **0x40** and you _can't_ change it!

![](https://cdn-learn.adafruit.com/assets/assets/000/094/442/medium800/temperature___humidity_SI7021_pinouts.jpg?1598555917)

![](https://cdn-learn.adafruit.com/assets/assets/000/035/913/medium800/temperature_pinouts.jpg?1474571345)

## Power Pins:

- **Vin** - this is the power pin. Since the chip uses 3 VDC, we have included a voltage regulator on board that will take 3-5VDC and safely convert it down. To power the board, give it the same power as the logic level of your microcontroller - e.g. for a 5V micro like Arduino, use 5V
- **3v3** - this is the 3.3V output from the voltage regulator, you can grab up to 100mA from this if you like
- **GND** - common ground for power and logic

## I2C Logic pins:

- **SCL** - I2C clock pin, connect to your microcontrollers I2C clock line.
- **SDA** - I2C data pin, connect to your microcontrollers I2C data line.
- **[STEMMA QT](https://learn.adafruit.com/introducing-adafruit-stemma-qt)&nbsp;-** These connectors allow you to connectors to dev boards with&nbsp; **STEMMA QT** connectors or to other things with&nbsp;[various associated accessories](https://www.adafruit.com/?q=JST%20SH%204).

# Adafruit Si7021 Temperature + Humidity Sensor

## Assembly

![](https://cdn-learn.adafruit.com/assets/assets/000/035/907/medium800/temperature_3251-01.jpg?1474571086)

_The photos below show a an HTUD21 sensor rather than the Si7021 but the soldering procedure is identical!_

## Prepare the header strip:

Cut the strip to length if necessary. It will be easier to solder if you insert it into a breadboard - **long pins down**

![temperature_sensors_header.jpg](https://cdn-learn.adafruit.com/assets/assets/000/035/908/medium640/temperature_sensors_header.jpg?1474571119)

## Add the breakout board:

Place the breakout board over the pins so that the short pins poke through the breakout pads

![temperature_sensors_place.jpg](https://cdn-learn.adafruit.com/assets/assets/000/035/909/medium640/temperature_sensors_place.jpg?1474571200)

## And Solder!

Be sure to solder all pins for reliable electrical contact.  
  
_(For tips on soldering, be sure to check out our_ [_Guide to Excellent Soldering_](http://learn.adafruit.com/adafruit-guide-excellent-soldering)_)._

![temperature_sensors_solder1.jpg](https://cdn-learn.adafruit.com/assets/assets/000/035/910/medium640/temperature_sensors_solder1.jpg?1474571226)

![temperature_sensors_solder2.jpg](https://cdn-learn.adafruit.com/assets/assets/000/035/911/medium640/temperature_sensors_solder2.jpg?1474571239)

You're done! Check your solder joints visually and continue onto the next steps

![temperature_sensors_done.jpg](https://cdn-learn.adafruit.com/assets/assets/000/035/912/medium640/temperature_sensors_done.jpg?1474571250)

# Adafruit Si7021 Temperature + Humidity Sensor

## Arduino Code

You can easily wire this breakout to any microcontroller, we'll be using an Arduino. For another kind of microcontroller, just make sure it has I2C, then port the code - its pretty simple stuff!

- Connect **Vin** to the power supply, 3-5V is fine.&nbsp;**(red wire on STEMMA QT version)** Use the same voltage that the microcontroller logic is based off of. For most Arduinos, that is 5V
- Connect **GND** to common power/data ground **(black wire on STEMMA QT version)**
- Connect the **SCL** pin to the I2C clock **SCL** pin on your Arduino. **(yellow wire on STEMMA QT version)** On an UNO & '328 based Arduino, this is also known as **A5** , on a Mega it is also known as **digital 21** and on a Leonardo/Micro, **digital 3**
- Connect the **SDA** pin to the I2C data **SDA** pin on your Arduino. **(blue wire on STEMMA QT version)** On an UNO & '328 based Arduino, this is also known as **A4** , on a Mega it is also known as **digital 20** and on a Leonardo/Micro, **digital 2**

![temperature___humidity_Si7021_Arduino_I2C_STEMMA_bb.jpg](https://cdn-learn.adafruit.com/assets/assets/000/094/443/medium640/temperature___humidity_Si7021_Arduino_I2C_STEMMA_bb.jpg?1598558726)

![temperature___humidity_Si7021_Arduino_I2C_breadboard_bb.jpg](https://cdn-learn.adafruit.com/assets/assets/000/094/444/medium640/temperature___humidity_Si7021_Arduino_I2C_breadboard_bb.jpg?1598558752)

![temperature___humidity_Si7021_original_Arduino_I2C.png](https://cdn-learn.adafruit.com/assets/assets/000/094/445/medium640/temperature___humidity_Si7021_original_Arduino_I2C.png?1598558772)

[diagram.fzz Fritzing file](https://cdn-learn.adafruit.com/assets/assets/000/035/934/original/diagram.fzz?1474575353)
The Si7021 has a default I2C address of **0x40** and cannot be changed!

# Install Adafruit\_Si7021 library

To begin reading sensor data, you will need to [install the Adafruit\_Si7021 library (code on our github repository)](https://github.com/adafruit/Adafruit_Si7021 "Link: https://github.com/adafruit/Adafruit\_Si7021"). It is available from the Arduino library manager so we recommend using that.

From the IDE open up the library manager...

![](https://cdn-learn.adafruit.com/assets/assets/000/063/024/medium800/temperature___humidity_managelib.png?1538708634)

And type in **adafruit si7021** to locate the library. Click **Install**

![](https://cdn-learn.adafruit.com/assets/assets/000/063/025/medium800/temperature___humidity_image.png?1538708692)

Also install the **Adafruit Unified Sensor** library in the same way:

![](https://cdn-learn.adafruit.com/assets/assets/000/063/023/medium800/temperature___humidity_adafruitsensor.png?1538708626)

We also have a great tutorial on Arduino library installation at:  
[http://learn.adafruit.com/adafruit-all-about-arduino-libraries-install-use](http://learn.adafruit.com/adafruit-all-about-arduino-libraries-install-use "Link: http://learn.adafruit.com/adafruit-all-about-arduino-libraries-install-use")

# Load Demo

Open up **File-\>Examples-\>Adafruit\_Si7021**** -\>si7021** and upload to your Arduino wired up to the sensor

![](https://cdn-learn.adafruit.com/assets/assets/000/035/929/medium800/temperature_demo.png?1474573430)

Thats it! Now open up the serial terminal window at 115200 speed to begin the test.

![](https://cdn-learn.adafruit.com/assets/assets/000/035/930/medium800/temperature_term.png?1474573535)

You can try breathing on the sensor to increase the humidity. The sensor reacts very fast!

# Library Reference

The library we have is simple and easy to use  
  
You can create the **Adafruit\_Si7021** object with:

```
Adafruit_Si7021 sensor = Adafruit_Si7021();
```

There are no pins to set since you must use the I2C bus!  
  
Then initialize the sensor with:

```
sensor.begin();
```

this function returns **True** if the sensor was found and responded correctly and **False** if it was not found  
  
Once initialized, you can query the temperature in °C with

```
sensor.readTemperature()
```

Which will return floating point (decimal + fractional) temperature. You can convert to Fahrenheit by multiplying by 1.8 and adding 32 as you have learned in grade school!  
  
Reading the humidity is equally simple. Call

```
sensor.readHumidity()
```

to read the humidity also as a floating point value between 0 and 100 (this reads % humidity)

This sensor also has a serial number which you might find handy! Call `sensor.readSerialNumber()` to read out the 8 bytes of unique ID. Then you can access them from `sensor.sernum_a` and `sensor.sernum_b`

# Adafruit Si7021 Temperature + Humidity Sensor

## Python & CircuitPython

It's easy to use the&nbsp;Si7021 sensor with Python or CircuitPython and the&nbsp;[Adafruit CircuitPython SI7021](https://github.com/adafruit/Adafruit_CircuitPython_SI7021)&nbsp;module.&nbsp; This module allows you to easily write Python code that reads the humidity and temperature, pressurefrom the 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](https://learn.adafruit.com/circuitpython-on-raspberrypi-linux).

# CircuitPython Microcontroller Wiring
First wire up a SI7021 to your board exactly as shown on the previous pages for Arduino. Here's an example of wiring a Feather M0 or M4 to the sensor with I2C:

- **Board 3V** &nbsp;to&nbsp;**sensor VIN (red wire on STEMMA QT version)**  
- **Board GND** &nbsp;to&nbsp;**sensor GND (black wire on STEMMA QT version)**  
- **Board SCL** &nbsp;to&nbsp;**sensor SCL (yellow wire on STEMMA QT version)**  
- **Board SDA** &nbsp;to&nbsp;**sensor SDA (blue wire on STEMMA QT version)**  

![temperature___humidity_Si7021_FeatherM4_I2C_STEMMA_bb.jpg](https://cdn-learn.adafruit.com/assets/assets/000/094/446/medium640/temperature___humidity_Si7021_FeatherM4_I2C_STEMMA_bb.jpg?1598559030)

![temperature___humidity_Si7021_FeatherM4_I2C_breadboard_bb.jpg](https://cdn-learn.adafruit.com/assets/assets/000/094/447/medium640/temperature___humidity_Si7021_FeatherM4_I2C_breadboard_bb.jpg?1598559054)

![temperature___humidity_Si7021_original_FeatherM0_I2C.png](https://cdn-learn.adafruit.com/assets/assets/000/094/448/medium640/temperature___humidity_Si7021_original_FeatherM0_I2C.png?1598559081)

# Python Computer Wiring
The Si7021 can potentially clock stretch the I2C signal, which can cause issues on Raspberry Pi's. See here for suggested fix:

[I2C Clock Stretching on Raspberry Pi](https://learn.adafruit.com/circuitpython-on-raspberrypi-linux/i2c-clock-stretching)
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](https://learn.adafruit.com/circuitpython-on-raspberrypi-linux).&nbsp;

Here's the Raspberry Pi wired with I2C:

- **Pi 3V3** to&nbsp;**sensor VIN (red wire on STEMMA QT version)**  
- **Pi GND** to&nbsp;**sensor GND (black wire on STEMMA QT version)**  
- **Pi SCL&nbsp;** to&nbsp;**sensor SCL (yellow wire on STEMMA QT version)**  
- **Pi SDA** to&nbsp;**sensor SDA (blue wire on STEMMA QT version)**  

![temperature___humidity_Si7021_RasPi_I2C_STEMMA_bb.jpg](https://cdn-learn.adafruit.com/assets/assets/000/094/449/medium640/temperature___humidity_Si7021_RasPi_I2C_STEMMA_bb.jpg?1598559170)

![temperature___humidity_Si7021_RasPi_I2C_breadboard_bb.jpg](https://cdn-learn.adafruit.com/assets/assets/000/094/450/medium640/temperature___humidity_Si7021_RasPi_I2C_breadboard_bb.jpg?1598559196)

![temperature___humidity_Si7021_original_RasPi_I2C.png](https://cdn-learn.adafruit.com/assets/assets/000/094/451/medium640/temperature___humidity_Si7021_original_RasPi_I2C.png?1598559213)

# CircuitPython Installation of&nbsp;Si7021 Library
You'll need to install the&nbsp;[Adafruit CircuitPython SI7021](https://github.com/adafruit/Adafruit_CircuitPython_SI7021)&nbsp;library on your CircuitPython board.

First make sure you are running the&nbsp;[latest version of Adafruit CircuitPython](https://github.com/adafruit/circuitpython/releases)&nbsp;for your board.

Next you'll need to install the necessary libraries&nbsp;to use the hardware--carefully follow the steps to find and install these libraries from&nbsp;[Adafruit's CircuitPython library bundle](https://github.com/adafruit/Adafruit_CircuitPython_Bundle).&nbsp; For example the Circuit Playground Express guide has&nbsp;[a great page on how to install the library bundle](../../../../adafruit-circuit-playground-express/installing-libraries)&nbsp;for both express and non-express boards.

Load the following libraries into your **lib** folder on your **CIRCUITPY** drive:

- **adafruit\_si7021/**
- **adafruit\_bus\_device/**

Before continuing make sure your board's lib folder or root filesystem has the&nbsp; **adafruit\_si7021/,** and **adafruit\_bus\_device/** folders **&nbsp;** copied over.

Next&nbsp;[connect to the board's serial REPL&nbsp;](../../../../micropython-basics-how-to-load-micropython-on-a-board/serial-terminal)so you are at the CircuitPython&nbsp; **\>\>\>** &nbsp;prompt.

# Python Installation of&nbsp;Si7021 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](https://learn.adafruit.com/circuitpython-on-raspberrypi-linux)!

Once that's done, from your command line run the following command:

- `sudo pip3 install adafruit-circuitpython-si7021`

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 from the board's Python REPL.&nbsp; First run the following code to import the necessary modules and initialize the I2C bus:

```python
import board
import adafruit_si7021
sensor = adafruit_si7021.SI7021(board.I2C())
```

Now you're ready to read values from the sensor using any of these properties:

- **temperature** &nbsp;- The sensor temperature in degrees Celsius.
- **relative\_humidity** &nbsp;- The percent humidity as a value from 0 to 100%.

```
print('Temperature: {} degrees C'.format(sensor.temperature))
print('Humidity: {}%'.format(sensor.relative_humidity))
```

![](https://cdn-learn.adafruit.com/assets/assets/000/048/108/medium800/temperature_Screen_Shot_2017-11-10_at_3.21.07_PM.png?1510356090)

That's all there is to using the Si7021 sensor with CircuitPython!

# Full Example Code
https://github.com/adafruit/Adafruit_CircuitPython_SI7021/blob/main/examples/si7021_simpletest.py

# Adafruit Si7021 Temperature + Humidity Sensor

## Python Library Docs

# Adafruit Si7021 Temperature + Humidity Sensor

## WipperSnapper

![](https://cdn-learn.adafruit.com/assets/assets/000/128/368/medium800/temperature___humidity_adafruit_products_01_DeviceList.png?1709240259)

## What is WipperSnapper

WipperSnapper is a firmware designed to turn any WiFi-capable board into an Internet-of-Things device without programming a single line of code. WipperSnapper connects to [Adafruit IO](https://io.adafruit.com/), a web&nbsp;platform designed ([by Adafruit!](https://www.adafruit.com/about)) to&nbsp;_display_,&nbsp;_respond_, and&nbsp;_interact_&nbsp;with your project's data.

Simply load the WipperSnapper firmware onto your board, add credentials, and plug it into power. Your board will automatically register itself with your Adafruit IO account.

From there, you can add&nbsp;_components_&nbsp;to your board such as buttons, switches, potentiometers, sensors, and more! Components are&nbsp;_dynamically&nbsp;_added to hardware, so you can&nbsp;immediately start interacting, logging, and streaming the data your projects produce without writing code.

If you've never used WipperSnapper, click below to read through the quick start guide before continuing.

[Quickstart: Adafruit IO WipperSnapper](https://learn.adafruit.com/quickstart-adafruit-io-wippersnapper)
## Wiring
First, wire up an Si7021 to your board exactly as follows. Here is an example of the Si7021 wired to an&nbsp;[Adafruit ESP32 Feather V2](https://www.adafruit.com/product/5400)&nbsp;using I2C&nbsp;[with a STEMMA QT cable (no soldering required)](https://www.adafruit.com/product/4210)

- **Board 3V** &nbsp;to&nbsp;**sensor VIN (red wire on STEMMA QT)**  
- **Board GND** &nbsp;to&nbsp;**sensor GND (black wire on STEMMA QT)**  
- **Board SCL** &nbsp;to&nbsp;**sensor SCL (yellow wire on STEMMA QT)**  
- **Board SDA** &nbsp;to&nbsp;**sensor SDA (blue wire on STEMMA QT)**

![temperature___humidity_featherV2_Si7021_STEMMAQT_bb.png](https://cdn-learn.adafruit.com/assets/assets/000/128/373/medium640/temperature___humidity_featherV2_Si7021_STEMMAQT_bb.png?1709251216)

![temperature___humidity_featherV2_Si7021_Breadboard_bb.png](https://cdn-learn.adafruit.com/assets/assets/000/128/374/medium640/temperature___humidity_featherV2_Si7021_Breadboard_bb.png?1709251240)

## Usage

Connect your board to Adafruit IO Wippersnapper and **[navigate to the WipperSnapper board list](https://io.adafruit.com/wippersnapper).**

On this page, **select the WipperSnapper board you're using** to be brought to the board's interface page.

![](https://cdn-learn.adafruit.com/assets/assets/000/128/345/medium800/temperature___humidity_adafruit_products_02_DeviceSelection_croppped.png?1709236736)

If you do not see your board listed here - you need [to connect your board to Adafruit IO](https://learn.adafruit.com/quickstart-adafruit-io-wippersnapper) first.

On the device page, quickly&nbsp; **check that you're running the latest version of the WipperSnapper firmware**.

The device tile on the left indicates the version number of the firmware running on the connected board.

- **If the firmware version is green with a checkmark -** &nbsp;continue with this guide.
- **If the firmware version is red with an exclamation mark "!" -** &nbsp;[update to the latest WipperSnapper firmware](https://learn.adafruit.com/quickstart-adafruit-io-wippersnapper)&nbsp;on your board before continuing.

![temperature___humidity_adafruit_products_04_LatestVersion.png](https://cdn-learn.adafruit.com/assets/assets/000/128/346/medium640/temperature___humidity_adafruit_products_04_LatestVersion.png?1709236813)

![temperature___humidity_adafruit_products_04_UpdateRequired.png](https://cdn-learn.adafruit.com/assets/assets/000/128/347/medium640/temperature___humidity_adafruit_products_04_UpdateRequired.png?1709236839)

Next, make sure the sensor is plugged into your board and click the **&nbsp;I2C Scan&nbsp;** button.

![](https://cdn-learn.adafruit.com/assets/assets/000/113/177/medium800/sensor_page_crop_scan.png?1657724520)

You should see the Si7021's default I2C address of&nbsp;`0x40`&nbsp;pop-up in the I2C scan list.

![](https://cdn-learn.adafruit.com/assets/assets/000/128/348/medium800/temperature___humidity_Screenshot_2024-02-29_200251.png?1709237090)

###  I don't see the sensor's I2C address listed! 


First, double-check the connection and/or wiring between the sensor and the board.

Then, reset the board and let it re-connect to Adafruit IO WipperSnapper.

With the sensor detected in an I2C scan, you're ready to add the sensor to your board.

**Click the New Component button or the + button** to bring up the component picker.

![](https://cdn-learn.adafruit.com/assets/assets/000/127/931/medium800/sensor_page_temperature___humidity_06_AddComponent.png?1708631009)

Adafruit IO supports a large amount of components. To quickly find your sensor, type&nbsp;`Si7021`&nbsp;into the search bar, then select the&nbsp; **Si7021** &nbsp;component.

![](https://cdn-learn.adafruit.com/assets/assets/000/128/344/medium800/temperature___humidity_b9zO2f262n.png?1709236668)

On the component configuration page, the Si7021's sensor address should be listed along with the sensor's settings.

The&nbsp; **Send Every** &nbsp;option is specific to each sensor's measurements. This option will tell the Feather how often it should read from the Si7021 sensor and send the data to Adafruit IO. Measurements can range from every 30 seconds to every 24 hours.

For this example, set the&nbsp; **Send Every&nbsp;** interval to every 30 seconds.

![](https://cdn-learn.adafruit.com/assets/assets/000/128/349/medium800/temperature___humidity_3VZQg76CmO.png?1709237138)

Your device interface should now show the sensor components you created. After the interval you configured elapses, WipperSnapper will automatically read values from the sensor(s) and send them to Adafruit IO.

![](https://cdn-learn.adafruit.com/assets/assets/000/128/350/medium800/temperature___humidity_Screenshot_2024-02-29_200344.png?1709237152)

To view the data that has been logged from the sensor, click on the graph next to the sensor name.

![](https://cdn-learn.adafruit.com/assets/assets/000/128/351/medium800/temperature___humidity_8CdpITPVzP.png?1709237162)

Here you can see the feed history and edit things about the feed such as the name, privacy, webhooks associated with the feed and more. If you want to learn more about how feeds work, [check out this page](https://learn.adafruit.com/all-the-internet-of-things-episode-four-adafruit-io/advanced-feeds).

![](https://cdn-learn.adafruit.com/assets/assets/000/128/352/medium800/temperature___humidity_d2SbNP7w8J.png?1709237412)

# Adafruit Si7021 Temperature + Humidity Sensor

## Downloads

# Files & Datasheets

- [Fritzing object in Adafruit Fritzing library](https://github.com/adafruit/Fritzing-Library)
- [Arduino library on GitHub](https://github.com/adafruit/Adafruit_Si7021)
- [EagleCAD PCB files on GitHub](https://github.com/adafruit/Adafruit-Si7021-PCB)
- [Si7021-A20 datasheet](https://cdn-learn.adafruit.com/assets/assets/000/035/931/original/Support_Documents_TechnicalDocs_Si7021-A20.pdf)
- [K&R Smith calibration notes](http://www.kandrsmith.org/RJS/Misc/Hygrometers/calib_many.html)

Warning: 

# Schematic and Fabrication Print STEMMA QT Version
![](https://cdn-learn.adafruit.com/assets/assets/000/094/452/medium800/temperature___humidity_Si7021_sch.png?1598559664)

![](https://cdn-learn.adafruit.com/assets/assets/000/094/453/medium800/temperature___humidity_Si7021_fab_print.png?1598559672)

# Schematic and Fabrication Print Original Version
![](https://cdn-learn.adafruit.com/assets/assets/000/035/932/medium800/temperature_schem.png?1474574583)

![](https://cdn-learn.adafruit.com/assets/assets/000/035/933/medium800/temperature_fab.png?1474574594)


## Primary Products

### Adafruit Si7021 Temperature & Humidity Sensor Breakout Board

[Adafruit Si7021 Temperature & Humidity Sensor Breakout Board](https://www.adafruit.com/product/3251)
It's summer and you're sweating and your hair's all frizzy and all you really want to know is why the weatherman said this morning that today's relative humidity would max out at a perfectly reasonable 42% when it feels more like 77%. Enter the&nbsp; **Si7021 Temperature +...**

In Stock
[Buy Now](https://www.adafruit.com/product/3251)
[Related Guides to the Product](https://learn.adafruit.com/products/3251/guides)

## Related Guides

- [Using LoraWAN and The Things Network with CircuitPython](https://learn.adafruit.com/using-lorawan-and-the-things-network-with-circuitpython.md)
- [Storage humidity and temperature monitor](https://learn.adafruit.com/storage-humidity-and-temperature-monitor.md)
- [Adafruit IO Home: Lights and Temperature ](https://learn.adafruit.com/adafruit-io-house-lights-and-temperature.md)
- [Humidity and Temperature Monitor with E-Ink Display](https://learn.adafruit.com/humidity-and-temperature-monitor-redux-e-ink-display.md)
- [I2C Addresses and Troublesome Chips](https://learn.adafruit.com/i2c-addresses.md)
- [EZ Make Oven](https://learn.adafruit.com/ez-make-oven.md)
- [Raspberry Pi Azure IoT Hub Dashboard with CircuitPython](https://learn.adafruit.com/raspberry-pi-iot-dashboard-with-azure-and-circuitpython.md)
- [Adafruit ESP32-S2 Feather](https://learn.adafruit.com/adafruit-esp32-s2-feather.md)
- [Plotting Offline Data - JSONL to CSV files, filters and graphs](https://learn.adafruit.com/plotting-offline-data-jsonl-to-csv-files-filters-and-graphs.md)
- [CLUE Vertical Garden Weather Visualizer](https://learn.adafruit.com/clue-vertical-garden-weather-visualizer.md)
- [Trinket Temperature & Humidity LCD Display](https://learn.adafruit.com/trinket-temperature-humidity-lcd-display.md)
- [IoT Temperature Logger with Analog Devices ADT7410, Feather and Adafruit IO](https://learn.adafruit.com/iot-temperature-logger-with-arduino-and-adafruit-io.md)
- [AM2315 - Encased I2C Temperature/Humidity Sensor](https://learn.adafruit.com/am2315-encased-i2c-temperature-humidity-sensor.md)
- [Adafruit HTU21D-F Temperature & Humidity Sensor](https://learn.adafruit.com/adafruit-htu21d-f-temperature-humidity-sensor.md)
- [Adafruit BME680](https://learn.adafruit.com/adafruit-bme680-humidity-temperature-barometic-pressure-voc-gas.md)
