initial commit
-converter .txt -> MatLab matrices
This commit is contained in:
21
workspace/sensors/Recording.h
Normal file
21
workspace/sensors/Recording.h
Normal file
@@ -0,0 +1,21 @@
|
||||
#ifndef RECORDING_H
|
||||
#define RECORDING_H
|
||||
|
||||
#include "SensorReadings.h"
|
||||
|
||||
#include "SensorMagneticField.h"
|
||||
#include "SensorAccelerometer.h"
|
||||
#include "SensorGyro.h"
|
||||
|
||||
/**
|
||||
* all recorded sensor values within one dataset
|
||||
*/
|
||||
struct Recording {
|
||||
|
||||
SensorReadings<SensorGyro> gyro;
|
||||
SensorReadings<SensorAccelerometer> accel;
|
||||
SensorReadings<SensorMagneticField> magField;
|
||||
|
||||
};
|
||||
|
||||
#endif // RECORDING_H
|
||||
Reference in New Issue
Block a user