We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8545a49 commit 3835629Copy full SHA for 3835629
examples/lis3mdl_lsm6ds_test.py
@@ -2,9 +2,13 @@
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
+# To use ISM330DHCX, comment out the LSM6DSOX import line
9
+# and uncomment the next line
10
+# from adafruit_lsm6ds import ISM330DHCX as LSM6DS
11
+
12
from adafruit_lis3mdl import LIS3MDL
13
14
accel_gyro = LSM6DS(board.I2C())
0 commit comments