We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Wrong values for accelerometer configuration
Using the following code :
from __future__ import print_function import qwiic_icm20948 import time import sys if __name__ == "__main__": IMU = qwiic_icm20948.QwiicIcm20948(address=0x68) IMU.setBank(2) IMU._i2c.writeByte(IMU.address, IMU.AGB2_REG_ACCEL_CONFIG_1, 0x23) register = IMU._i2c.readByte(IMU.address, IMU.AGB2_REG_ACCEL_CONFIG_1) print(register)
The return value should be 0x23
The return value is 0x01
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Subject of the issue
Wrong values for accelerometer configuration
Your workbench
Steps to reproduce
Using the following code :
Expected behaviour
The return value should be 0x23
Actual behaviour
The return value is 0x01
The text was updated successfully, but these errors were encountered: