For Hepta-Sat Lite
Diff: Hepta9axis.cpp
- Revision:
- 8:54f18fbf1843
- Parent:
- 7:3a5b7c76eb48
diff -r 3a5b7c76eb48 -r 54f18fbf1843 Hepta9axis.cpp --- a/Hepta9axis.cpp Thu Aug 29 02:49:27 2019 +0000 +++ b/Hepta9axis.cpp Thu Aug 29 02:59:21 2019 +0000 @@ -46,7 +46,7 @@ n_axis.stop(); double acc_ax = short((xh<<8) | (xl)); - *ax = (acc_ax)*2/32764*9.81; + *ax = (acc_ax)*2/32768*9.81; //y-axis @@ -67,7 +67,7 @@ n_axis.stop(); double acc_ay = short((yh<<8) | (yl)); - *ay = (acc_ay)*2/32764*9.81; + *ay = (acc_ay)*2/32768*9.81; //z-axis @@ -88,7 +88,7 @@ n_axis.stop(); double acc_az = short((zh<<8) | (zl)); - *az = (acc_az)*2/32764*(-9.81); + *az = (acc_az)*2/32768*(-9.81); }