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
00001 #include "mbed.h" 00002 #include "LIS302.h" 00003 00004 DigitalOut led (LED1); 00005 LIS302 acc(p11, p12, p13, p10); // mosi, miso, clk, ncs 00006 00007 int main() { 00008 00009 for (int i = 0; i < 100; i++) { 00010 printf("%.2f, %.2f, %.2f\n", acc.x(),acc.y(),acc.z()); 00011 wait(0.1); 00012 } 00013 00014 led = 1; // done! 00015 }
Generated on Mon Aug 1 2022 15:44:49 by
1.7.2