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.
Dependencies: mbed
Data.cpp@44:3b45ec49bc44, 2015-07-08 (annotated)
- Committer:
 - aidanPJG
 - Date:
 - Wed Jul 08 15:42:30 2015 +0000
 - Revision:
 - 44:3b45ec49bc44
 - Parent:
 - 43:8e154016dd89
 - Child:
 - 45:eb06f1d42938
 
tried to add speed as an array to print to xl but not quite there yet
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 | 43:8e154016dd89 | 12 | void data(int sensor_number, int speed) | 
| 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 | 43:8e154016dd89 | 16 | fprintf(fp, " %d \t %d \n",sensor_number, speed); //fills the tables with the results | 
| ADAMSTRUTT | 35:085a674c9fdf | 17 | fclose(fp); | 
| ADAMSTRUTT | 35:085a674c9fdf | 18 | } |