Skip to content

Commit cad5b00

Browse files
authored
Merge pull request #11 from kattni/update-combo-example
Add ISM330DHCX to example.
2 parents 8545a49 + 70d27df commit cad5b00

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

examples/lis3mdl_lsm6ds_test.py

+6-1
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,14 @@
22
import board
33
from adafruit_lsm6ds import LSM6DSOX as LSM6DS
44

5-
# To use LSM6DS33, comment out the previous line
5+
# To use LSM6DS33, comment out the LSM6DSOX import line
66
# and uncomment the next line
77
# from adafruit_lsm6ds import LSM6DS33 as LSM6DS
8+
9+
# To use ISM330DHCX, comment out the LSM6DSOX import line
10+
# and uncomment the next line
11+
# from adafruit_lsm6ds import ISM330DHCX as LSM6DS
12+
813
from adafruit_lis3mdl import LIS3MDL
914

1015
accel_gyro = LSM6DS(board.I2C())

0 commit comments

Comments
 (0)