Skip to content

Commit 5ef5153

Browse files
author
Noel Gaetan
committed
Fix bad error
1 parent b1f9cb1 commit 5ef5153

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/lsm6ds_lsm6ds3_simpletest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from adafruit_lsm6ds.lsm6ds3 import LSM6DS3
77

88
i2c = board.I2C() # uses board.SCL and board.SDA
9-
sensor = LSM6DS33(i2c)
9+
sensor = LSM6DS3(i2c)
1010

1111
while True:
1212
print("Acceleration: X:%.2f, Y: %.2f, Z: %.2f m/s^2" % (sensor.acceleration))

0 commit comments

Comments
 (0)