summaryrefslogtreecommitdiff
path: root/include/motor.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/motor.hpp')
-rw-r--r--include/motor.hpp36
1 files changed, 0 insertions, 36 deletions
diff --git a/include/motor.hpp b/include/motor.hpp
deleted file mode 100644
index cb95b6a..0000000
--- a/include/motor.hpp
+++ /dev/null
@@ -1,36 +0,0 @@
-#pragma once
-#include "actuator.hpp"
-#include "logger.hpp"
-#include "rocketUtils.hpp"
-
-class Motor : public Actuator {
-
- private:
-
-
- public:
-
- /**
- * @brief Construct a new Motor object
- *
- */
- Motor();
-
- /**
- * @brief Initialize the motor.
- *
- * @param data Data for initializing the motor
- * @return true Initialization Success
- * @return false Initialization Failure
- */
- virtual bool init(void* data) override;
-
- /**
- * @brief Write data to the motor.
- *
- * @param data Data to be writen to the motor
- * @return true Motor write Success
- * @return false Motor write Failure
- */
- virtual bool writeData(void* data) override;
-}; \ No newline at end of file