Added buttons controls.

This commit is contained in:
Author glitchrain
2024-12-14 02:46:59 -08:00
committed by s.aydarov
parent 03106054c5
commit 13766ca4f2
9 changed files with 267 additions and 40 deletions

16
Enums.h
View File

@@ -7,21 +7,23 @@ enum DeviceMode
SETTINGS_MODE,
SETTINGS_BRIGHTNESS,
SETTINGS_TIME,
RUN
RUN,
};
enum RunMode
{
Forward,
Backward,
Bothward,
Random,
FORWARD,
BACKWARD,
BOTH,
RANDOM,
TEST
};
enum TimeMode
{
Const,
Manual
CONST,
MANUAL,
INCREASING
};
#endif