LED values
| 96 | |
| 97 | // LED values |
| 98 | enum LEDValues { |
| 99 | ledOff = 0x00, |
| 100 | ledBlinkingAll = 0x01, |
| 101 | ledFlashOn1 = 0x02, |
| 102 | ledFlashOn2 = 0x03, |
| 103 | ledFlashOn3 = 0x04, |
| 104 | ledFlashOn4 = 0x05, |
| 105 | ledOn1 = 0x06, |
| 106 | ledOn2 = 0x07, |
| 107 | ledOn3 = 0x08, |
| 108 | ledOn4 = 0x09, |
| 109 | ledRotating = 0x0a, |
| 110 | ledBlinking = 0x0b, // Blinking of previously enabled LED (e.g. from 0x01-0x09) |
| 111 | ledBlinkingSlow = 0x0c, // As above |
| 112 | ldAlternating = 0x0d // 1+4, 2+3, then back to previous after a short time |
| 113 | }; |
| 114 | |
| 115 | #endif // __CONTROLSTRUCT_H__ |
nothing calls this directly
no outgoing calls
no test coverage detected