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.
2 parents 53dacbb + bb67c12 commit f00ff21Copy full SHA for f00ff21
SHT4x_Trinkey_Demos/CircuitPython/sht4x_temp_humidity/code.py
@@ -8,7 +8,8 @@
8
9
i2c = board.I2C() # uses board.SCL and board.SDA
10
sht = adafruit_sht4x.SHT4x(i2c)
11
-print("Found SHT4x with serial number", hex(sht.serial_number))
+# overflow issue with sht41, not present with sht45
12
+# print("Found SHT4x with serial number", hex(sht.serial_number))
13
14
sht.mode = adafruit_sht4x.Mode.NOHEAT_HIGHPRECISION
15
print("Current mode is: ", adafruit_sht4x.Mode.string[sht.mode])
0 commit comments