Mapping programm, using an minimu9 V3 sensormodule and an USB-library to save the sensorvalues on.

Dependencies:   FatFileSystem m3pi_TUB mbed

Fork of USB-A by Chris Styles

main.cpp

Committer:
chris
Date:
2010-09-13
Revision:
0:4e756c4c88a7
Child:
1:c92781bb4d5e

File content as of revision 0:4e756c4c88a7:

#include "mbed.h"
#include "MSCFileSystem.h"

MSCFileSystem fs ("fs");

int main () {

    FILE *fp = fopen("/fs/hello.txt","w");
    fprintf(fp,"Hello world!\n");
    fclose (fp);

}