Pipeline Technology Centre / Mbed 2 deprecated PTCSpeed_MBED1

Dependencies:   mbed mbed-rtos

Committer:
ADAMSTRUTT
Date:
Thu Aug 06 14:49:27 2015 +0000
Revision:
2:4dd54b3934a5
.;

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ADAMSTRUTT 2:4dd54b3934a5 1 #ifndef DATA_H
ADAMSTRUTT 2:4dd54b3934a5 2 #define DATA_H
ADAMSTRUTT 2:4dd54b3934a5 3
ADAMSTRUTT 2:4dd54b3934a5 4 #include "UserInput.h"
ADAMSTRUTT 2:4dd54b3934a5 5 #include "mbed.h"
ADAMSTRUTT 2:4dd54b3934a5 6 #include <string>
ADAMSTRUTT 2:4dd54b3934a5 7
ADAMSTRUTT 2:4dd54b3934a5 8 extern LocalFileSystem local;
ADAMSTRUTT 2:4dd54b3934a5 9
ADAMSTRUTT 2:4dd54b3934a5 10 class Data{
ADAMSTRUTT 2:4dd54b3934a5 11 public:
ADAMSTRUTT 2:4dd54b3934a5 12 void initialise();
ADAMSTRUTT 2:4dd54b3934a5 13 void counter(int count);
ADAMSTRUTT 2:4dd54b3934a5 14 void logSpeed(int *sensor_number, float *time, float *speed);
ADAMSTRUTT 2:4dd54b3934a5 15 //void averageData();
ADAMSTRUTT 2:4dd54b3934a5 16 };
ADAMSTRUTT 2:4dd54b3934a5 17 #endif