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.
main.cpp
- Committer:
- simon
- Date:
- 2009-11-13
- Revision:
- 0:c036efff0b10
File content as of revision 0:c036efff0b10:
// LIS302 Hello World!
#include "mbed.h"
#include "LIS302.h"
LIS302 acc(p5, p6, p7, p8); // mosi, miso, sclk, ncs
int main() {
while(1) {
printf("%.3f %.3f %.3f\n", acc.x(), acc.y(), acc.z());
wait(0.1);
}
}