8000 GitHub - silolytics/ros_openimu: ROS driver for Aceinna OpenIMU products
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

silolytics/ros_openimu

 
 

Repository files navigation

ros_openimu

ROS driver for Aceinna OpenIMU products

  • Please refer to the included application note for further information.

Changes made to integrate OpenIMU300RI

The default axis orientation of the device is not compliant with The ros standard.

Changes are from X Y Z to X -Y - Z

Acceleration: Be careful with acceleration data.
The state estimation nodes in robot_localization assume that an IMU that is placed in its neutral right-side-up position on a flat surface will:

    > Measure +9.81 meters per second squared for the Z axis.

If the sensor is rolled +90 degrees (left side up), the acceleration should be +9.81 meters per second squared for the Y axis.
If the sensor is pitched +90 degrees (front side down), it should read -9.81 meters per second squared for the X axis.

Changes to driver structure

In the default configuaration the driver outputs lists. For better readability and coding style this is changed to dictionaries.
Following format is used: imudata = {'time_ms': INITIAL, 'time_s': INITIAL, 'roll': INITIAL, 'pitch': INITIAL, 'heading': INITIAL, 'xrate': INITIAL, 'yrate': INITIAL, 'zrate':INITIAL, 'xaccel': INITIAL, 'yaccel': INITIAL, 'zaccel': INITIAL, 'errorflag'=INITIAL}

  1. Covariances

The covariances are set for roll and pitch according to the accuray in the datsheet. 0.25

  1. Connection The driver uses in it's initialization a gneric method to find the device. This fails if we use the the driver with the RS232 ports.
    Params are in launchfile:
  • Port: /dev/ttyTSH1
  • baidrate: 115200

About

ROS driver for Aceinna OpenIMU products

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages

  • Python 99.7%
  • CMake 0.3%
0