fix for sensitivity

This commit is contained in:
2021-06-10 14:21:59 +02:00
parent 05b64b05a3
commit 0e79b5f4ae
2 changed files with 6 additions and 6 deletions

View File

@ -207,9 +207,9 @@ ReturnValue_t GyroHandlerL3GD20H::interpretDeviceReply(DeviceCommandId_t id,
sif::info << "Z: " << angVelocZ << " \xC2\xB0" << std::endl;
#else
sif::printInfo("GyroHandlerL3GD20H: Angular velocities in degrees per second:\n");
sif::printInfo("X: %f \xC2\xB0\n", angVelocX);
sif::printInfo("Y: %f \xC2\xB0\n", angVelocY);
sif::printInfo("Z: %f \xC2\xB0\n", angVelocZ);
sif::printInfo("X: %f\n", angVelocX);
sif::printInfo("Y: %f\n", angVelocY);
sif::printInfo("Z: %f\n", angVelocZ);
#endif
}
#endif