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 c7f08fa + 070d306 commit 91a505dCopy full SHA for 91a505d
examples/scd4x_simpletest.py
@@ -5,7 +5,8 @@
5
import board
6
import adafruit_scd4x
7
8
-i2c = board.I2C()
+i2c = board.I2C() # uses board.SCL and board.SDA
9
+# i2c = board.STEMMA_I2C() # For using the built-in STEMMA QT connector on a microcontroller
10
scd4x = adafruit_scd4x.SCD4X(i2c)
11
print("Serial number:", [hex(i) for i in scd4x.serial_number])
12
examples/scd4x_tuning_knobs.py
0 commit comments