27 lines
256 B
C
27 lines
256 B
C
#ifndef EYE_TRAINER_ENUMS
|
|
#define EYE_TRAINER_ENUMS 0
|
|
|
|
enum DeviceMode
|
|
{
|
|
IDLE,
|
|
SETTINGS_MODE,
|
|
SETTINGS_BRIGHTNESS,
|
|
SETTINGS_TIME,
|
|
RUN
|
|
};
|
|
|
|
enum RunMode
|
|
{
|
|
Forward,
|
|
Backward,
|
|
Bothward,
|
|
Random,
|
|
};
|
|
|
|
enum TimeMode
|
|
{
|
|
Const,
|
|
Manual
|
|
};
|
|
|
|
#endif |