diff --git a/examples/bno08x_find_heading.py b/examples/bno08x_find_heading.py index b156ace..e0c3f1d 100644 --- a/examples/bno08x_find_heading.py +++ b/examples/bno08x_find_heading.py @@ -6,7 +6,6 @@ from board import SCL, SDA from busio import I2C from adafruit_bno08x import ( - BNO_REPORT_STEP_COUNTER, BNO_REPORT_ROTATION_VECTOR, BNO_REPORT_GEOMAGNETIC_ROTATION_VECTOR, ) @@ -14,7 +13,6 @@ i2c = I2C(SCL, SDA, frequency=800000) bno = BNO08X_I2C(i2c) -bno.enable_feature(BNO_REPORT_STEP_COUNTER) bno.enable_feature(BNO_REPORT_ROTATION_VECTOR) bno.enable_feature(BNO_REPORT_GEOMAGNETIC_ROTATION_VECTOR)