Skip to content

Arduino library to work with Sensirion's STS3x temperature sensor over I2C

License

Notifications You must be signed in to change notification settings

Sensirion/arduino-i2c-sts3x

Repository files navigation

Sensirion I²C STS3X Arduino Library

This is the Sensirion STS3X library for Arduino allowing you to communicate with a sensor of the STS3X family over I²C.

Click here to learn more about the Sensirion STS3X sensor family.

Supported sensor types

Sensor name I²C Addresses
STS30 0x4A, 0x4B
STS30A 0x4A, 0x4B
STS31A 0x4A, 0x4B
STS31 0x4A, 0x4B
STS32 0x4A, 0x4B
STS33 0x4A, 0x4B
STS35 0x4A, 0x4B

The following instructions and examples use a STS30.

Installation of the library

This library can be installed using the Arduino Library manager: Start the Arduino IDE and open the Library Manager via

SketchInclude LibraryManage Libraries...

Search for the Sensirion I2C STS3X library in the Filter your search... field and install it by clicking the install button.

If you cannot find it in the library manager, download the latest release as .zip file and add it to your Arduino IDE via

SketchInclude LibraryAdd .ZIP Library...

Don't forget to install the dependencies listed below the same way via library manager or Add .ZIP Library

Dependencies

Sensor wiring

Use the following pin description to connect your STS3X to the standard I²C bus of your Arduino board:

Pin Cable Color Name Description Comments
1 green SDA I2C: Serial data input / output
2 black GND Ground
3 yellow SCL I2C: Serial clock input
4 red VDD Supply Voltage 2.15V to 5.5V

The recommended voltage is 3.3V.

Board specific wiring

You will find pinout schematics for recommended board models below:

Arduino Uno

STS3X STS3X Pin Cable Color Board Pin
SDA 1 green D18/SDA
GND 2 black GND
SCL 3 yellow D19/SCL
VDD 4 red 3.3V

Arduino Nano

STS3X STS3X Pin Cable Color Board Pin
SDA 1 green A4
GND 2 black GND
SCL 3 yellow A5
VDD 4 red 3.3V

Arduino Micro

STS3X STS3X Pin Cable Color Board Pin
SDA 1 green D2/SDA
GND 2 black GND
SCL 3 yellow ~D3/SCL
VDD 4 red 3.3V

Arduino Mega 2560

STS3X STS3X Pin Cable Color Board Pin
SDA 1 green D20/SDA
GND 2 black GND
SCL 3 yellow D21/SCL
VDD 4 red 3.3V

ESP32 DevKitC

STS3X STS3X Pin Cable Color Board Pin
SDA 1 green GPIO 21
GND 2 black GND
SCL 3 yellow GPIO 22
VDD 4 red 3V3

Quick Start

  1. Install the libraries and dependencies according to Installation of the library

  2. Connect the STS3X sensor to your Arduino as explained in Sensor wiring

  3. Open the exampleUsage sample project within the Arduino IDE:

    FileExamplesSensirion I2C STS3XexampleUsage

    The provided example is working with a STS30, I²C address 0x4A. In order to use the code with another product or I²C address you need to change it in the code of exampleUsage. You find the list with pre-defined addresses in src/SensirionI2CSts3x.h.

  4. Click the Upload button in the Arduino IDE or SketchUpload

  5. When the upload process has finished, open the Serial Monitor or Serial Plotter via the Tools menu to observe the measurement values. Note that the Baud Rate in the used tool has to be set to 115200 baud.

Contributing

Contributions are welcome!

We develop and test this driver using our company internal tools (version control, continuous integration, code review etc.) and automatically synchronize the master branch with GitHub. But this doesn't mean that we don't respond to issues or don't accept pull requests on GitHub. In fact, you're very welcome to open issues or create pull requests :)

This Sensirion library uses clang-format to standardize the formatting of all our .cpp and .h files. Make sure your contributions are formatted accordingly:

The -i flag will apply the format changes to the files listed.

clang-format -i src/*.cpp src/*.h

Note that differences from this formatting will result in a failed build until they are fixed.

License

See LICENSE.

About

Arduino library to work with Sensirion's STS3x temperature sensor over I2C

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages