Skip to content

Commit 7308f71

Browse files
authored
Merge pull request #3171 from dhalbert/lsm6ds3trc-fixes
Feather sense has LSM6DS3TRC; import it properly
2 parents 5feac89 + 503c6c2 commit 7308f71

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Adafruit_Feather_Sense/code.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
from adafruit_lsm6ds.lsm6ds33 import LSM6DS33 as LSM6DS
2222
lsm6ds = LSM6DS(i2c)
2323
except RuntimeError:
24-
from adafruit_lsm6ds.lsm6ds3 import LSM6DS3 as LSM6DS
24+
from adafruit_lsm6ds.lsm6ds3trc import LSM6DS3TRC as LSM6DS
2525
lsm6ds = LSM6DS(i2c)
2626

2727
apds9960 = APDS9960(i2c)

LED_Bullwhip/code.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
from adafruit_lsm6ds.lsm6ds33 import LSM6DS33 as LSM6DS
2929
sensor = LSM6DS(i2c)
3030
except RuntimeError:
31-
from adafruit_lsm6ds.lsm6ds3 import LSM6DS3 as LSM6DS
31+
from adafruit_lsm6ds.lsm6ds3trc import LSM6DS3TRC as LSM6DS
3232
sensor = LSM6DS(i2c)
3333

3434
# CUSTOMISE COLORS HERE:

0 commit comments

Comments
 (0)