This commit is contained in:
Michal Moskal 2017-07-10 15:11:21 +01:00
parent 7e8a053f3a
commit 1f51d137b3

View File

@ -3,16 +3,16 @@
* Patterns for lights under the buttons. * Patterns for lights under the buttons.
*/ */
const enum LightsPattern { const enum LightsPattern {
Off = 0, // LED_BLACK Off = 0,
Green = 1, // LED_GREEN Green = 1,
Red = 2, // LED_RED Red = 2,
Orange = 3, // LED_ORANGE Orange = 3,
GreenFlash = 4, // LED_GREEN_FLASH GreenFlash = 4,
RedFlash = 5, // LED_RED_FLASH RedFlash = 5,
OrangeFlash = 6, // LED_ORANGE_FLASH OrangeFlash = 6,
GreenPulse = 7, // LED_GREEN_PULSE GreenPulse = 7,
RedPulse = 8, // LED_RED_PULSE RedPulse = 8,
OrangePulse = 9, // LED_ORANGE_PULSE OrangePulse = 9,
} }
/** /**