diff --git a/examples/lis3mdl_lsm6ds_test.py b/examples/lis3mdl_lsm6ds_test.py index cff345e..b8ace3a 100644 --- a/examples/lis3mdl_lsm6ds_test.py +++ b/examples/lis3mdl_lsm6ds_test.py @@ -2,9 +2,14 @@ import board from adafruit_lsm6ds import LSM6DSOX as LSM6DS -# To use LSM6DS33, comment out the previous line +# To use LSM6DS33, comment out the LSM6DSOX import line # and uncomment the next line # from adafruit_lsm6ds import LSM6DS33 as LSM6DS + +# To use ISM330DHCX, comment out the LSM6DSOX import line +# and uncomment the next line +# from adafruit_lsm6ds import ISM330DHCX as LSM6DS + from adafruit_lis3mdl import LIS3MDL accel_gyro = LSM6DS(board.I2C())