22 lines
390 B
C
22 lines
390 B
C
#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
|