WEMOS_SHT3x_Arduino_Library
WEMOS_SHT3x_Arduino_Library copied to clipboard
Got 2 SHT30 shields. The shown temperature is ~30°C, while the real temperature is ~23°C. I didn't investigate yet, but the temperature is wrong with both shields, very far away...
Less warnings is better! ;-)
This closes #7
I get this compile error, but the sketch uploads fine afterwards and works on the Wemos. I have two sensor defined in the sketch: ``` SHT3X indoor(0x45); //0x45 is the...
In the file "WEMOS_SHT3x_Arduino_Library/src/WEMOS_SHT3X.cpp", in the function "get()", the second test does not work. When requesting 6 bytes, it is impossible that more than 6 bytes will be received. After...
Using Arduino IDE 1.8.2 I get these warnings, any suggestions on fixing? /Volumes/Macintosh HD 2/Users/Documents/Arduino/libraries/WEMOS_SHT3x_Arduino_Library-master/src/WEMOS_SHT3X.cpp: In member function 'void SHT3X::get()': /Volumes/Macintosh HD 2/Users/Documents/Arduino/libraries/WEMOS_SHT3x_Arduino_Library-master/src/WEMOS_SHT3X.cpp:28:30: warning: ISO C++ says that these are...
Hi, Arduino IDE : 1.8.1 Wire.h: 1.0.0 I have a few sketch with SHT3x lib than works well for a long time. But now, when I want to flash a...
After a brief reading of the datasheet of sht3x, useless delays were removed Signed-off-by: Fabiano Riccardi
There is a call of `Wire.requestFrom` function in `src/WEMOS_SHT3X.cpp:30` which is considered ambiguous by ISO C++, so it's not currently possible to properly build the library.
Hi there, I'm trying to read outdoor values, but something is wrong, I'm getting wrong readings. SHT3x readings: ``` Temperature: 3.59c Humidity: 68.50% ``` But, the real values should be:...