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 "MSCFileSystem.h" 00003 #include "LIS302.h" 00004 00005 MSCFileSystem fs("fs"); // Mount flash drive under the name "msc" 00006 00007 LIS302 acc(p11, p12, p13, p10); // mosi, miso, clk, ncs 00008 00009 int main() { 00010 00011 FILE *fp = fopen("/fs/acc_data.csv","w"); 00012 for (int i = 0; i < 100; i++) { 00013 fprintf(fp,"%.2f, %.2f, %.2f\n", acc.x(),acc.y(),acc.z()); 00014 wait(0.1); 00015 } 00016 fclose(fp); 00017 }
Generated on Wed Jul 13 2022 08:00:56 by
1.7.2