Open stiamon77 opened 2 months ago
Thanks for the report. The latest update of the Arduino SHT4x library requires to also supply the I2C address to support all version of the SHT4x sensor. You can compile the example by changing the line to
sht4x.begin(Wire, SHT40_I2C_ADDR_44);
We will update the examples within the next days to support the latest version of the SHT4x drivers.
There is also a small error in the library name. exampleUsage.ino & exampleLowPowerUsage.ino
#include <SensirionI2CSht4x.h>
SensirionI2CSht4x sht4x;
it's correct like this:
#include <SensirionI2cSht4x.h>
SensirionI2cSht4x sht4x;
Hi Error while compiling exampleUsage.ino