We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We tried a view BNO055 driver for ROS2 and found a bug in all of them. To adhere to REP 103 the messages have to use SI units.
In this package there are two problems:
1000
100
μT
T
16000000
16
The linear_acceleration scale factor is set to 1000, but has to be 100. From the BNO055 Data Sheet:
linear_acceleration
In the end, we decided to use the ros2_bno055_driver from RoverRobotics-archive, because we only have an RPi4 and python is not that performant. Here are our fixes RoverRobotics-archive/ros2_bno055_driver#6. But because this is the upstream repository of ros-foxy-bno055, it would be beneficial for other to fix it here as well.
ros-foxy-bno055
The text was updated successfully, but these errors were encountered:
Thank you for creating your first issue on this repo! Give me some time to review and respond to your problem.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
We tried a view BNO055 driver for ROS2 and found a bug in all of them. To adhere to REP 103 the messages have to use SI units.
In this package there are two problems:
1000
where it has to be100
μT
and notT
the factor hast to be16000000
and not16
The Bug
The
linear_acceleration
scale factor is set to1000
, but has to be100
.From the BNO055 Data Sheet:
Info
In the end, we decided to use the ros2_bno055_driver from RoverRobotics-archive, because we only have an RPi4 and python is not that performant. Here are our fixes RoverRobotics-archive/ros2_bno055_driver#6. But because this is the upstream repository of
ros-foxy-bno055
, it would be beneficial for other to fix it here as well.The text was updated successfully, but these errors were encountered: