We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8545a49 + 70d27df commit cad5b00Copy full SHA for cad5b00
examples/lis3mdl_lsm6ds_test.py
@@ -2,9 +2,14 @@
2
import board
3
from adafruit_lsm6ds import LSM6DSOX as LSM6DS
4
5
-# To use LSM6DS33, comment out the previous line
+# To use LSM6DS33, comment out the LSM6DSOX import line
6
# and uncomment the next line
7
# 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
13
from adafruit_lis3mdl import LIS3MDL
14
15
accel_gyro = LSM6DS(board.I2C())
0 commit comments