From 6a487c30304ce0b7498684c5a3230e509829dba8 Mon Sep 17 00:00:00 2001 From: Kattni Rembor Date: Mon, 13 Aug 2018 10:51:59 -0400 Subject: [PATCH] Update pins to match guide --- examples/lis3dh_simpletest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/lis3dh_simpletest.py b/examples/lis3dh_simpletest.py index a4a863f..7b96cdc 100644 --- a/examples/lis3dh_simpletest.py +++ b/examples/lis3dh_simpletest.py @@ -12,7 +12,7 @@ lis3dh = adafruit_lis3dh.LIS3DH_I2C(i2c, address=0x19, int1=int1) else: i2c = busio.I2C(board.SCL, board.SDA) - int1 = digitalio.DigitalInOut(board.D9) # Set this to the correct pin for the interrupt! + int1 = digitalio.DigitalInOut(board.D6) # Set this to the correct pin for the interrupt! lis3dh = adafruit_lis3dh.LIS3DH_I2C(i2c, int1=int1) # Hardware SPI setup: