02/07/15

Dependencies:   mbed

Dependents:   TabbedGUIMbed

Data.cpp

Committer:
aidanPJG
Date:
2015-07-15
Revision:
51:210353276e06
Parent:
50:d794595c6868
Child:
52:d21fc7266b66

File content as of revision 51:210353276e06:

#include "mbed.h"

LocalFileSystem local("local"); 

void initialise()
{ 
    FILE *fp1 = fopen("/local/Datalog.xls", "a");       // opens or creates fill Datalog, and gives the headings
    int counter=5;
    fprintf(fp1, " Test %d \n", counter);
    fprintf(fp1, " Sensor Name \t Time \t Speed \n");
    fclose(fp1);
}

void data(int sensor_number, int time, double speed)
{
    printf("it be printing");                            //testing  
    FILE *fp = fopen("/local/Datalog.xls", "a");       // Open "Datalog
    fprintf(fp, " %d \t %d \t %f \n",sensor_number, time, speed);       //fills the tables with the results
    fclose(fp);
}
    
void averageData()                                        //adds average data fom b2 to b6
{ 
    FILE *fp2 = fopen("/local/Datalog.xls", "a");       
    fprintf(fp2, " Average \t=SUM(B2:B4) / 5 \n"); 
    fclose(fp2);
}