Skip to content

Commit e11c95b

Browse files
authored
Cicerone MKR board fix
Introducing the delay fixes the humidity sensor calibration problems that the Cicerone MKR board faces when paired with MKR ENV R2 shield.
1 parent e539350 commit e11c95b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/MKRENV.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,9 @@ int ENVClass::begin()
8282
if (i2cReadWord(VEML6075_ADDRESS, VEML6075_ID_REG) != 0x0026) {
8383
_isv2 = true;
8484
}
85-
85+
86+
delay(1);
87+
8688
readHTS221Calibration();
8789

8890
// turn on the HTS221 and enable Block Data Update

0 commit comments

Comments
 (0)