Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
MainEvr.cpp
- Committer:
- evrast
- Date:
- 2017-09-04
- Revision:
- 3:56cd9dff3b5f
- Child:
- 4:ab14f0e33f2b
File content as of revision 3:56cd9dff3b5f:
#include "Accelerometre.h" Serial pc(USBTX, USBRX); int main() { Accelerometre acc; acc.writeByte(0x2A,0x01); double x = 0, y = 0, z = 0; acc.readxyzAngle(&x,&y,&z); pc.printf("Gravities: %lf %lf %lf\r\n",x,y,z); }