From 492c8c4929848195391f8cf26cd39177da32e0c6 Mon Sep 17 00:00:00 2001 From: dherrada Date: Fri, 18 Nov 2022 13:05:20 -0500 Subject: [PATCH] Added commented out board.STEMMA_I2C with explanation --- examples/adt7410_simpletest.py | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/adt7410_simpletest.py b/examples/adt7410_simpletest.py index a44a764..544ada5 100644 --- a/examples/adt7410_simpletest.py +++ b/examples/adt7410_simpletest.py @@ -6,6 +6,7 @@ import adafruit_adt7410 i2c = board.I2C() # uses board.SCL and board.SDA +# i2c = board.STEMMA_I2C() # For using the built-in STEMMA QT connector on a microcontroller adt = adafruit_adt7410.ADT7410(i2c, address=0x48) adt.high_resolution = True