diff --git a/examples/neotrellis_multitrellis_simpletest.py b/examples/neotrellis_multitrellis_simpletest.py index faf19ae..88e7411 100644 --- a/examples/neotrellis_multitrellis_simpletest.py +++ b/examples/neotrellis_multitrellis_simpletest.py @@ -7,7 +7,8 @@ from adafruit_neotrellis.multitrellis import MultiTrellis # Create the I2C object for the NeoTrellis -i2c_bus = board.I2C() +i2c_bus = board.I2C() # uses board.SCL and board.SDA +# i2c = board.STEMMA_I2C() # For using the built-in STEMMA QT connector on a microcontroller # Create the NeoTrellis object """ diff --git a/examples/neotrellis_simpletest.py b/examples/neotrellis_simpletest.py index d65d199..dd65dae 100644 --- a/examples/neotrellis_simpletest.py +++ b/examples/neotrellis_simpletest.py @@ -6,7 +6,8 @@ from adafruit_neotrellis.neotrellis import NeoTrellis # create the i2c object for the trellis -i2c_bus = board.I2C() +i2c_bus = board.I2C() # uses board.SCL and board.SDA +# i2c = board.STEMMA_I2C() # For using the built-in STEMMA QT connector on a microcontroller # create the trellis trellis = NeoTrellis(i2c_bus)