You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 8, 2024. It is now read-only.
Connect the SVM40 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 SVM40 Sensor board can be found in the
data sheet.
VDD of the SEK-SVM40 to the 5V of your Arduino board
GND of the SEK-SVM40 to the GND of your Arduino board
SCL of the SEK-SVM40 to the SCL of your Arduino board
SDA of the SEK-SVM40 to the SDA of your Arduino board
SEL of the SEK-SVM40 to another GND of your Arduino board
Open the exampleUsage sample project within the Arduino IDE
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 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.