Modifica sensore per restituire accelerazione su z

This commit is contained in:
2026-06-20 17:06:47 +02:00
parent be1678beaf
commit bf10647b70
4 changed files with 29 additions and 7 deletions
+4 -2
View File
@@ -15,6 +15,8 @@ class Sensore : public PieceInterface{
std::vector<std::vector<float>> rotData;
std::vector<float> timeData;
float gModule;
//in che punto sto controllando il segnale
unsigned int* dataPos;
@@ -32,8 +34,8 @@ class Sensore : public PieceInterface{
//funzioni specifiche
void initCSV(std::vector<std::vector<float>> data);
void setIntervall(int min, int max);
void setPos(int &pos);
float getZ_Acc();
};
#endif