Hello World for the LIS302 accelerometer library

Dependencies:   mbed LIS302

main.cpp

Committer:
simon
Date:
2010-06-08
Revision:
0:676c81a790ac
Child:
1:768e44d2e442

File content as of revision 0:676c81a790ac:

// 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);
    }
}