Fang-Robotics-MCB
Fang Robotics Team Codebase
Loading...
Searching...
No Matches
directionality.hpp
Go to the documentation of this file.
1#ifndef FANG_ROBOTICS_MCB_MOTOR_DATA_DIRECTIONALITY_HPP
2#define FANG_ROBOTICS_MCB_MOTOR_DATA_DIRECTIONALITY_HPP
3#include <cstdint>
4
5namespace fang::motor
6{
7 //This uint8_t is used because there shouldn't be more than 256 values of motor directionality
8 //Honestly consider refactoring if it goes past 25.
9 enum class Directionality : std::uint8_t
10 {
13 };
14}
15#endif
Definition directionality.hpp:6
Directionality
Definition directionality.hpp:10