From f2b05085f18b19f49494aef8581de7132c81874d Mon Sep 17 00:00:00 2001 From: dherrada Date: Fri, 18 Nov 2022 13:05:29 -0500 Subject: [PATCH] Added commented out board.STEMMA_I2C with explanation --- examples/si1145_simpletest.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/si1145_simpletest.py b/examples/si1145_simpletest.py index 9a75ff8..77e459d 100644 --- a/examples/si1145_simpletest.py +++ b/examples/si1145_simpletest.py @@ -9,7 +9,8 @@ # setup I2C bus using board default # change as needed for specific boards -i2c = board.I2C() +i2c = board.I2C() # uses board.SCL and board.SDA +# i2c = board.STEMMA_I2C() # For using the built-in STEMMA QT connector on a microcontroller # setup sensor si1145 = adafruit_si1145.SI1145(i2c)