6 #ifndef __SENSORS_SHT31_h__
7 #define __SENSORS_SHT31_h__
11 #include <Adafruit_SHT31.h>
16 template <u
int8_t ADDRESS=0x44>
18 Adafruit_SHT31 _sht31;
23 _present = _sht31.begin(ADDRESS);
32 bool measure (__attribute__((unused))
bool async=
false) {
33 if( present() ==
true ) {
34 _temperature = _sht31.readTemperature() * 10;
35 _humidity = _sht31.readHumidity();