A test program for the MMA8452 accelerometer
The test program runs a bunch of tests for the MMA8452 accelerometer.
What is below is not the test program, but an example to whet your appetite about the library.
#include "mbed.h" #include "MMA8452.h" int main() { Serial pc(USBTX,USBRX); pc.baud(115200); double x = 0, y = 0, z = 0; MMA8452 acc(p28, p27, 40000); acc.setBitDepth(MMA8452::BIT_DEPTH_12); acc.setDynamicRange(MMA8452::DYNAMIC_RANGE_4G); acc.setDataRate(MMA8452::RATE_100); while(1) { if(!acc.isXYZReady()) { wait(0.01); continue; } acc.readXYZGravity(&x,&y,&z); pc.printf("Gravities: %lf %lf %lf\r\n",x,y,z); } }
An easy way to test that this actually works is to run the loop above and hold the MMA8452 parallel to the ground along the respective axis (and upsidedown in each axis). You will see 1G on the respective axis and 0G on the others.
Revisions of MMA8452.lib
Revision | Date | Message | Actions |
---|---|---|---|
6:e3100f66ed6a | 2014-03-07 | Updated child and cleaned things up. | File Diff Annotate |
5:756f9b157319 | 2014-03-06 | Adding independent query tests | File Diff Annotate |
4:936b60956489 | 2014-03-05 | Updated child | File Diff Annotate |
3:2a8e59a590db | 2014-03-05 | Updated child, cleaned something. | File Diff Annotate |
2:0630128bdb32 | 2014-03-05 | Updated child. | File Diff Annotate |
1:e9981919b524 | 2014-03-05 | Tests two's complement conversions and has gravity outputs. | File Diff Annotate |
0:0c17274c3b7c | 2014-03-04 | (Incomplete) test program for the MMA8452 accelerometer | File Diff Annotate |