Updated Motor documentation

This commit is contained in:
Pascal Serrarens 2023-12-05 11:15:15 +01:00
parent f33b02311c
commit f4b0eb1743

View File

@ -6,10 +6,12 @@
namespace Passer {
namespace RoboidControl {
/// @brief A Motor is a Thing which can move parts of the Roboid
/// @note Currently only rotational motors are supported
class Motor : public Thing {
public:
/// @brief Default constructor for the Motor
Motor();
/// @brief Turning direction of the motor
/// @brief Motor turning direction
enum class Direction { Clockwise = 1, CounterClockwise = -1 };