1

I am using an Arduino Nano with BNO055 Adafruit library.

The I2C speed is 400 kHz.

The Adafruit BNO055 Absolute Orientation Sensor mentions Angular Velocity Vector (100 Hz).

What does this 100 Hz mean?

Is it outputting angular velocity 16bit complete packets at 100 Hz speed? (Means 100 × 16-bit packets per second?)

Or is it the bit rate of outputting angular velocity 16-bit packet? (16b × 100/s = 1600 bps?)

How many Angular Velocity Vector frames actually I can get for 400 kHz I2C per second?

Transistor
  • 168,990
  • 12
  • 186
  • 385
vassidefuk
  • 89
  • 1
  • 8

2 Answers2

3

it looks like ther's an update rate of 100Hz (so you can get 100 results for that measure each second)

3

You can read 100 16-bit packets from the device per second. The update rate (100Hz) of the IC does not change with the bus speed.

The I2C speed of 400kHz only specify how fast the 16-bits can be transfered from the sensor to the host of the bus, not how fast the 16-bits get updated. The update rate is fixed at 100Hz giving only 100 new values per second.

The bus speed has to be at least 16 times higher than the update rate, to read out 100Hz, because 100 x 16bits create 1600 bits of data + the commands needed for read-out.

JRE
  • 67,678
  • 8
  • 104
  • 179
sgt_johnny
  • 809
  • 4
  • 11