Navigation

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    1. Home
    2. Mike Horton
    Mike Horton

    Mike Horton

    @Mike Horton

    1
    Reputation
    10
    Posts
    612
    Profile views
    0
    Followers
    1
    Following
    Joined Last Online

    • Profile
    • More
      • Following
      • Followers
      • Topics
      • Posts
      • Best
      • Groups
    Mike Horton Follow

    Posts made by Mike Horton

    RE: Pitch and roll

    You need to load the VG_AHRS Application which runs Kalman Filter and estimates the Roll and Pitch.

    The OpenIMU300RI ships by default with IMU only.

    The compiled code is on this page and can be directly installed from the website if the devices is connected via the Python driver.
    https://developers.aceinna.com/code/apps

    The FW code is also in Visual Studio Code Aceinna Extensions and can be compiled and loaded from source

    Home -> Custom IMU Examples -> OpenIMU300RI/VG_AHRS

    posted in The OpenIMU Family •
    RE: MCR1101-50-5 current sensor

    Since you are not using Overcurrent protection functionality nor the fault flag, you can leave the FaultB and VOC pin OPEN.

    The output step response of the device on Vout is 300nS

    posted in Current Sensor •
    RE: CRC check

    There is example code in the open source python driver

    Check here
    https://github.com/Aceinna/python-openimu/blob/master/openimu/openimu.py

    There also example code in the open source C++ driver

    Check here
    https://github.com/Aceinna/cpp-openimu/blob/master/OpenIMUProtoTest/cksum.cpp

    There is finally embedded C-code in the open imu library source itself

    Check here
    https://github.com/Aceinna/OpenIMU330-lib/blob/master/Platform/Core/src/crc16.c

    posted in The OpenIMU Family •
    RE: Unit for output csv data

    The accelerations are in m/s^2 and rates in deg/s

    posted in MTLT305D •
    OpenIMU300 INS Data

    Parking lot test of OpenIMU300 with Ublox M8 in INS mode.

    posted in The OpenIMU Family •
    Share my open imu data

    Quick data share test

    My raw data is Files

    posted in The OpenIMU Family •
    RE: Share my open imu300 data

    Nice. Why does it share the data as an image instead of a JS graph?

    posted in The OpenIMU Family •
    RE: Adapting AHRS for long continuos turns

    I think our default algorithm will work fine for this application. The errors in roll and pitch will should be pretty modest. This is a very easy case to simulate with our online simulator found on our developers website. I look forward to see the simulation results which can be shared directly on the forum.

    posted in The OpenIMU Family •
    RE: Open IMU in GPS denied area

    UWB is probably best option indeed.

    posted in The OpenIMU Family •
    What is call back rate of RunUserNavAlgorithm() ?

    The call back rate of RunUserNavAlgorithm() is defaulted to 200Hz.

    The is controlled by the following line of code found in taskDataAcquisition.c

    inertialAndPositionDataProcessing(dacRate)
    

    dacRate is by default 200Hz

    posted in The OpenIMU Family •