/* * Copyright (c) 2024 Markus Lehr. * * * SPDX-License-Identifier: Owend property of Markus Lehr * */ #ifndef RTS_INCLUDE_VIBSENSORDESC_H_ #define RTS_INCLUDE_VIBSENSORDESC_H_ #include #include #include #include #include using json = nlohmann::json; class VibSensorDesc: public ISensorDesc { private: std::list> mDescriptions; public: VibSensorDesc(); virtual int GetDescription() override; virtual bool Add2Json(json& j) override; }; #endif /* RTS_INCLUDE_VIBSENSORDESC_H_ */