1
Fork 0

Merge pull request #18 from timkoning17/patch-1

Fix spelling error in lib.rs
This commit is contained in:
Julian Gaal 2021-01-31 18:51:40 +01:00 committed by GitHub
commit f9a4ef5563
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -76,7 +76,7 @@ use embedded_hal::{
pub const PI: f32 = 3.14159265358979323846; pub const PI: f32 = 3.14159265358979323846;
/// Gyro Sensitivity /// Gyro Sensitivity
pub const FS_SEL: (f32, f32, f32, f32) = (131., 65.5, 32.8, 16.4); pub const FS_SEL: (f32, f32, f32, f32) = (131., 65.5, 32.8, 16.4);
/// Calcelerometer Sensitivity /// Accelerometer Sensitivity
pub const AFS_SEL: (f32, f32, f32, f32) = (16384., 8192., 4096., 2048.); pub const AFS_SEL: (f32, f32, f32, f32) = (16384., 8192., 4096., 2048.);