Skip to content

Commit

Permalink
Merge pull request #14 from Breefield/patch-1
Browse files Browse the repository at this point in the history
Update examples to reflect changes to adafruit_lsm6ds
  • Loading branch information
siddacious committed Nov 9, 2020
2 parents 11e5aa1 + 1f30680 commit aa720bc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/lis3mdl_lsm6ds_test.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import time
import board
from adafruit_lsm6ds import LSM6DSOX as LSM6DS
from adafruit_lsm6ds.lsm6dsox import LSM6DSOX as LSM6DS

# To use LSM6DS33, comment out the LSM6DSOX import line
# and uncomment the next line
# from adafruit_lsm6ds import LSM6DS33 as LSM6DS
# from adafruit_lsm6ds.lsm6ds33 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_lsm6ds.lsm330dhcx import ISM330DHCX as LSM6DS

from adafruit_lis3mdl import LIS3MDL

Expand Down

0 comments on commit aa720bc

Please sign in to comment.