Ok

Dependencies:   mbed_rtos_types Mutex mbed_rtos_storage mbed Semaphore

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Datas.h Source File

Datas.h

00001 #ifndef Data
00002 #define Data
00003 
00004 
00005 #include "mbed.h"
00006  #include<string>
00007 class Datas
00008 {
00009 public:
00010     Datas(string measure_types);
00011     string measure_type;
00012     float data_set[120];
00013     void normalizeMinMaxAvg(int l);
00014 };
00015 #endif