Skip to main content Link Menu Expand (external link) Document Search Copy Copied

Device IMU

With Flo Edge, you get access to a pre calibrated 9 axis IMU.

Streaming data

You can stream both filtered and raw data upto 200 Hz. Here’s an simple example to illustrate that.

from anx_interface import Anx

def imu_cb(data):
    print(data)
    
anx = Anx()
anx.start_device_imu(fps=100, cb=imu_cb)
anx.wait()