From 9da16da05239662ef843d0bf0e4cefdccf76526b Mon Sep 17 00:00:00 2001 From: dherrada Date: Fri, 18 Nov 2022 13:05:21 -0500 Subject: [PATCH] Added commented out board.STEMMA_I2C with explanation --- examples/bme680_simpletest.py | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/bme680_simpletest.py b/examples/bme680_simpletest.py index 5c1849e..ff77675 100644 --- a/examples/bme680_simpletest.py +++ b/examples/bme680_simpletest.py @@ -7,6 +7,7 @@ # Create sensor object, communicating over the board's default I2C bus i2c = board.I2C() # uses board.SCL and board.SDA +# i2c = board.STEMMA_I2C() # For using the built-in STEMMA QT connector on a microcontroller bme680 = adafruit_bme680.Adafruit_BME680_I2C(i2c, debug=False) # change this to match the location's pressure (hPa) at sea level