[wpilibc] Add RadioLEDState docs to C++ (NFC) (#7158)

Add RadioLEDState docs for consistency with Java.
This commit is contained in:
Ryan Blue
2024-10-04 21:22:31 -04:00
committed by GitHub
parent 8102516300
commit 09a93b86dc

View File

@@ -21,7 +21,13 @@ struct CANStatus {
int transmitErrorCount;
};
enum RadioLEDState { kOff = 0, kGreen = 1, kRed = 2, kOrange = 3 };
/** State for the radio led. */
enum RadioLEDState {
kOff = 0, ///< Off.
kGreen = 1, ///< Green.
kRed = 2, ///< Red.
kOrange = 3 ///< Orange.
};
class RobotController {
public: