We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 163a192 commit f1eb01eCopy full SHA for f1eb01e
adafruit_si7021/__init__.py
@@ -138,7 +138,12 @@ class SI7021:
138
def __init__(self, i2c_bus: I2C, address: int = 0x40) -> None:
139
self.i2c_device = I2CDevice(i2c_bus, address)
140
self._command(_RESET)
141
+
142
+ # max 15ms Powerup Time after issuing software reset
143
+ # Table 2 inside of:
144
+ # https://cdn-learn.adafruit.com/assets/assets/000/035/931/original/Support_Documents_TechnicalDocs_Si7021-A20.pdf
145
time.sleep(0.015)
146
147
# Make sure the USER1 settings are correct.
148
while True:
149
# While restarting, the sensor doesn't respond to reads or writes.
0 commit comments