Sensing
enum Direction : int8_t { CW = 1, // clockwise CCW = -1, // counterclockwise UNKNOWN = 0 // invalid or not yet known };
Last updated
Was this helpful?
enum Direction : int8_t {
CW = 1, // clockwise
CCW = -1, // counterclockwise
UNKNOWN = 0 // invalid or not yet known
};Last updated
Was this helpful?
Was this helpful?