02/07/15
Dependencies: mbed
Data.cpp@48:e9578f56534a, 2015-07-13 (annotated)
- Committer:
- aidanPJG
- Date:
- Mon Jul 13 14:44:08 2015 +0000
- Revision:
- 48:e9578f56534a
- Parent:
- 47:1dc3b5f7bf4a
- Child:
- 50:d794595c6868
Added userInput however it doesn't really work. It returns a weird negative distance and 0 for number of sensors. Or maybe the other way around
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
ADAMSTRUTT | 35:085a674c9fdf | 1 | #include "mbed.h" |
ADAMSTRUTT | 35:085a674c9fdf | 2 | |
ADAMSTRUTT | 35:085a674c9fdf | 3 | LocalFileSystem local("local"); |
ADAMSTRUTT | 35:085a674c9fdf | 4 | |
aidanPJG | 43:8e154016dd89 | 5 | void initialise() |
aidanPJG | 43:8e154016dd89 | 6 | { |
aidanPJG | 43:8e154016dd89 | 7 | FILE *fp1 = fopen("/local/Datalog.xls", "a"); // opens or creates fill Datalog, and gives the headings |
aidanPJG | 44:3b45ec49bc44 | 8 | fprintf(fp1, " Sensor Name \t Speed \n"); |
aidanPJG | 43:8e154016dd89 | 9 | fclose(fp1); |
aidanPJG | 43:8e154016dd89 | 10 | } |
aidanPJG | 43:8e154016dd89 | 11 | |
aidanPJG | 48:e9578f56534a | 12 | void data(int sensor_number, int times) |
aidanPJG | 43:8e154016dd89 | 13 | { |
aidanPJG | 44:3b45ec49bc44 | 14 | printf("it be printing"); //testing |
aidanPJG | 43:8e154016dd89 | 15 | FILE *fp = fopen("/local/Datalog.xls", "a"); // Open "Datalog |
aidanPJG | 48:e9578f56534a | 16 | fprintf(fp, " %d \t %d \n",sensor_number, times); //fills the tables with the results |
ADAMSTRUTT | 35:085a674c9fdf | 17 | fclose(fp); |
aidanPJG | 45:eb06f1d42938 | 18 | } |
aidanPJG | 45:eb06f1d42938 | 19 | |
aidanPJG | 45:eb06f1d42938 | 20 | void averageData() //adds average data fom b2 to b6 |
aidanPJG | 45:eb06f1d42938 | 21 | { |
aidanPJG | 45:eb06f1d42938 | 22 | FILE *fp2 = fopen("/local/Datalog.xls", "a"); |
aidanPJG | 47:1dc3b5f7bf4a | 23 | fprintf(fp2, " Average \t=SUM(B2:B4) / 5 \n"); |
aidanPJG | 45:eb06f1d42938 | 24 | fclose(fp2); |
ADAMSTRUTT | 35:085a674c9fdf | 25 | } |