Skip to content

Commit aa720bc

Browse files
authored
Merge pull request #14 from Breefield/patch-1
Update examples to reflect changes to adafruit_lsm6ds
2 parents 11e5aa1 + 1f30680 commit aa720bc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

examples/lis3mdl_lsm6ds_test.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
import time
22
import board
3-
from adafruit_lsm6ds import LSM6DSOX as LSM6DS
3+
from adafruit_lsm6ds.lsm6dsox import LSM6DSOX as LSM6DS
44

55
# To use LSM6DS33, comment out the LSM6DSOX import line
66
# and uncomment the next line
7-
# from adafruit_lsm6ds import LSM6DS33 as LSM6DS
7+
# from adafruit_lsm6ds.lsm6ds33 import LSM6DS33 as LSM6DS
88

99
# To use ISM330DHCX, comment out the LSM6DSOX import line
1010
# and uncomment the next line
11-
# from adafruit_lsm6ds import ISM330DHCX as LSM6DS
11+
# from adafruit_lsm6ds.lsm330dhcx import ISM330DHCX as LSM6DS
1212

1313
from adafruit_lis3mdl import LIS3MDL
1414

0 commit comments

Comments
 (0)