diff --git a/examples/ens160_advancedtest.py b/examples/ens160_advancedtest.py index cd32923..495368b 100644 --- a/examples/ens160_advancedtest.py +++ b/examples/ens160_advancedtest.py @@ -7,6 +7,7 @@ import adafruit_ens160 i2c = board.I2C() # uses board.SCL and board.SDA +# i2c = board.STEMMA_I2C() # For using the built-in STEMMA QT connector on a microcontroller ens = adafruit_ens160.ENS160(i2c) print("Firmware Vers: ", ens.firmware_version) diff --git a/examples/ens160_simpletest.py b/examples/ens160_simpletest.py index 7b2752f..82cf390 100644 --- a/examples/ens160_simpletest.py +++ b/examples/ens160_simpletest.py @@ -7,6 +7,7 @@ import adafruit_ens160 i2c = board.I2C() # uses board.SCL and board.SDA +# i2c = board.STEMMA_I2C() # For using the built-in STEMMA QT connector on a microcontroller ens = adafruit_ens160.ENS160(i2c)