implement gyroskop
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
/**
|
||||
* @file menuSensorData.h
|
||||
* @author Alexander Klein (alex@kleiax.de)
|
||||
* @brief
|
||||
* @version 0.1
|
||||
* @date 2023-09-04
|
||||
*
|
||||
* @copyright Copyright (c) 2023
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef MENU_SENSOR_DATA_H
|
||||
#define MENU_SENSOR_DATA_H
|
||||
|
||||
#include "menuInformationSites.h"
|
||||
#include "sensorData.h"
|
||||
|
||||
class MenuSensorData : public MenuInformationSites {
|
||||
public:
|
||||
MenuSensorData(SensorData* SensorData);
|
||||
|
||||
private:
|
||||
void printPage() const override;
|
||||
|
||||
SensorData* sensorData;
|
||||
};
|
||||
|
||||
#endif //MENU_SENSOR_DATA_H
|
||||
Reference in New Issue
Block a user