mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-23 01:21:42 +00:00
[wpilibc] Add RadioLEDState docs to C++ (NFC) (#7158)
Add RadioLEDState docs for consistency with Java.
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user