CTRE Phoenix 6 C++ 24.3.0
ChassisReference.hpp
Go to the documentation of this file.
1/*
2 * Copyright (C) Cross The Road Electronics.  All rights reserved.
3 * License information can be found in CTRE_LICENSE.txt
4 * For support and suggestions contact support@ctr-electronics.com or file
5 * an issue tracker at https://github.com/CrossTheRoadElec/Phoenix-Releases
6 */
7#pragma once
8
9namespace ctre {
10namespace phoenix6 {
11namespace sim {
12
13 /**
14 * Represents the orientation of a device relative to the robot chassis.
15 */
16 enum class ChassisReference {
17 /** The device should read a counter-clockwise rotation as positive motion. */
19 /** The device should read a clockwise rotation as positive motion. */
21 };
22
23}
24}
25}
ChassisReference
Represents the orientation of a device relative to the robot chassis.
Definition: ChassisReference.hpp:16
@ Clockwise_Positive
The device should read a clockwise rotation as positive motion.
@ CounterClockwise_Positive
The device should read a counter-clockwise rotation as positive motion.
Definition: string_util.hpp:15