Setings are now controlled by buttons with displayed info.

This commit is contained in:
Author glitchrain
2024-12-14 07:15:04 -08:00
committed by s.aydarov
parent 13766ca4f2
commit 4d7d67e7b6
5 changed files with 450 additions and 28 deletions

15
Enums.h
View File

@@ -3,25 +3,24 @@
enum DeviceMode
{
IDLE,
RUN = 0,
SETTINGS_MODE,
SETTINGS_BRIGHTNESS,
SETTINGS_TIME,
RUN,
TEST
};
enum RunMode
{
FORWARD,
BACKWARD,
BOTH,
RANDOM,
TEST
FORWARD = 0,
BACKWARD = 1,
BOTH = 2,
RANDOM = 3
};
enum TimeMode
{
CONST,
CONST = 0,
MANUAL,
INCREASING
};