BNO055 Min & Max Values in Python
up vote
0
down vote
favorite
I'm working on a Python/RPi project using the BNO055 and Adafruit library. I am trying to read the datasheet for the BNO055 to figure out the minimum and maximum values the Accelerometer, Gyroscope and Gravity sensors will gather.
How do I discern these values other than by running a script and swinging the sensor around to then go back and compute the values? It'd be easy if I could just use the following:
import board, busio, adafruit_bno055
i2c = busio.I2C(board.SCL, board.SDA)
sensor = adafruit_bno055.BNO055(i2c)
print(min(sensor.accelerometer))
print(max(sensor.accelerometer))
But that does not work in the way I'd want it to. Any suggestions on how to get min/max values this sensor can read?
Here's a link to the datasheet.
python raspberry-pi accelerometer sensor gyroscope
add a comment |
up vote
0
down vote
favorite
I'm working on a Python/RPi project using the BNO055 and Adafruit library. I am trying to read the datasheet for the BNO055 to figure out the minimum and maximum values the Accelerometer, Gyroscope and Gravity sensors will gather.
How do I discern these values other than by running a script and swinging the sensor around to then go back and compute the values? It'd be easy if I could just use the following:
import board, busio, adafruit_bno055
i2c = busio.I2C(board.SCL, board.SDA)
sensor = adafruit_bno055.BNO055(i2c)
print(min(sensor.accelerometer))
print(max(sensor.accelerometer))
But that does not work in the way I'd want it to. Any suggestions on how to get min/max values this sensor can read?
Here's a link to the datasheet.
python raspberry-pi accelerometer sensor gyroscope
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I'm working on a Python/RPi project using the BNO055 and Adafruit library. I am trying to read the datasheet for the BNO055 to figure out the minimum and maximum values the Accelerometer, Gyroscope and Gravity sensors will gather.
How do I discern these values other than by running a script and swinging the sensor around to then go back and compute the values? It'd be easy if I could just use the following:
import board, busio, adafruit_bno055
i2c = busio.I2C(board.SCL, board.SDA)
sensor = adafruit_bno055.BNO055(i2c)
print(min(sensor.accelerometer))
print(max(sensor.accelerometer))
But that does not work in the way I'd want it to. Any suggestions on how to get min/max values this sensor can read?
Here's a link to the datasheet.
python raspberry-pi accelerometer sensor gyroscope
I'm working on a Python/RPi project using the BNO055 and Adafruit library. I am trying to read the datasheet for the BNO055 to figure out the minimum and maximum values the Accelerometer, Gyroscope and Gravity sensors will gather.
How do I discern these values other than by running a script and swinging the sensor around to then go back and compute the values? It'd be easy if I could just use the following:
import board, busio, adafruit_bno055
i2c = busio.I2C(board.SCL, board.SDA)
sensor = adafruit_bno055.BNO055(i2c)
print(min(sensor.accelerometer))
print(max(sensor.accelerometer))
But that does not work in the way I'd want it to. Any suggestions on how to get min/max values this sensor can read?
Here's a link to the datasheet.
python raspberry-pi accelerometer sensor gyroscope
python raspberry-pi accelerometer sensor gyroscope
edited Nov 12 at 20:16
Joel
1,6086719
1,6086719
asked Nov 12 at 19:42
sam-la
63
63
add a comment |
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53269032%2fbno055-min-max-values-in-python%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown