Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sensirion/arduino-i2c-sts4x
Arduino driver for Sensirions STS4x temperature sensors
https://github.com/sensirion/arduino-i2c-sts4x
arduino driver esp32 esp8266 i2c sensirion sensor sts40 sts4x temperature
Last synced: 4 days ago
JSON representation
Arduino driver for Sensirions STS4x temperature sensors
- Host: GitHub
- URL: https://github.com/sensirion/arduino-i2c-sts4x
- Owner: Sensirion
- License: bsd-3-clause
- Created: 2022-02-09T16:50:29.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2024-05-10T09:55:35.000Z (6 months ago)
- Last Synced: 2024-05-10T10:52:50.203Z (6 months ago)
- Topics: arduino, driver, esp32, esp8266, i2c, sensirion, sensor, sts40, sts4x, temperature
- Language: C++
- Homepage: https://sensirion.com/products/catalog/SEK-STS40-CD1B/
- Size: 306 KB
- Stars: 2
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Sensirion I2C STS4X Arduino Library
This is the Sensirion STS4X library for Arduino using the
modules I2C interface.[](https://www.sensirion.com)
Click [here](https://www.sensirion.com) to learn more about the STS4X
sensor and Evaluation Kit.# Installation
To install, download the latest release as .zip file and add it to your
[Arduino IDE](http://www.arduino.cc/en/main/software) viaSketch => Include Library => Add .ZIP Library...
Don't forget to **install the dependencies** listed below the same way via `Add
.ZIP Library`Note: Installation via the Arduino Library Manager is coming soon.
# Dependencies
* [Sensirion Core](https://github.com/Sensirion/arduino-core)
# Quick Start
1. Connect the STS4X Sensor to your Arduino board's standard
I2C bus. Check the pinout of your Arduino board to find the correct pins.
The pinout of the STS4X Sensor board can be found in the
data sheet.* **VDD** of the SEK-STS4X to the **3.3V** of your Arduino board
* **GND** of the SEK-STS4X to the **GND** of your Arduino board
* **SCL** of the SEK-STS4X to the **SCL** of your Arduino board
* **SDA** of the SEK-STS4X to the **SDA** of your Arduino board2. Open the `exampleUsage` sample project within the Arduino IDE
File => Examples => Sensirion I2C STS4X => exampleUsage
3. Click the `Upload` button in the Arduino IDE or
Sketch => Upload
4. 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 corresponding window 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`](https://releases.llvm.org/download.html) 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.
```bash
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](LICENSE).