This is the Sensirion SDP library for Arduino using the modules I2C interface.
Click here to learn more about the SDP3x Sensor Evaluation Kit.
Click here to learn more about the SDP8xx series Sensor Evaluation Kit.
To install, download the latest release as .zip file and add it to your Arduino IDE via
Sketch => 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.
-
Connect the SDP 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 SDP Sensor board can be found in the data sheet.
- VDD of the SEK-SDP to the 3V3 of your Arduino board (5V is also possible)
- GND of the SEK-SDP to the GND of your Arduino board
- SCL of the SEK-SDP to the SCL of your Arduino board
- SDA of the SEK-SDP to the SDA of your Arduino board
-
Open the
exampleUsagesample project within the Arduino IDEFile => Examples => Sensirion I2C SDP => exampleUsage
-
Click the
Uploadbutton in the Arduino IDE orSketch => Upload
-
When the upload process has finished, open the
Serial MonitororSerial Plottervia theToolsmenu to observe the measurement values. Note that theBaud Ratein the corresponding window has to be set to115200 baud.
In the provided exampleUsage it is possible to select the I2C address depending on the model of the sensor used.
When using the wrong address the sensor will not answer the I2C requests, resulting in NACK errors.
Please find the possible values below:
| constant_name | value |
|---|---|
| SDP8XX_I2C_ADDRESS_0 | 0x25 |
| SDP8XX_I2C_ADDRESS_1 | 0x26 |
| SDP3X_I2C_ADDRESS_0 | 0x21 |
| SDP3X_I2C_ADDRESS_1 | 0x22 |
| SDP3X_I2C_ADDRESS_2 | 0x23 |
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/*.hNote that differences from this formatting will result in a failed build until they are fixed.
See LICENSE.


