backlight time correction

This commit is contained in:
Dmitry422
2026-02-08 18:39:28 +07:00
parent 8af7467b02
commit ed5c87fb14
2 changed files with 3 additions and 3 deletions

View File

@@ -39,7 +39,7 @@ typedef struct {
Light light; Light light;
} NotificationLedLayer; } NotificationLedLayer;
#define NOTIFICATION_SETTINGS_VERSION 0x05 #define NOTIFICATION_SETTINGS_VERSION 0x06
#define NOTIFICATION_SETTINGS_PATH INT_PATH(NOTIFICATION_SETTINGS_FILE_NAME) #define NOTIFICATION_SETTINGS_PATH INT_PATH(NOTIFICATION_SETTINGS_FILE_NAME)
typedef struct { typedef struct {

View File

@@ -87,7 +87,7 @@ const float volume_value[VOLUME_COUNT] = {
#define DELAY_COUNT 12 #define DELAY_COUNT 12
const char* const delay_text[DELAY_COUNT] = { const char* const delay_text[DELAY_COUNT] = {
"Always ON", "Always ON",
"1s", "2s",
"5s", "5s",
"10s", "10s",
"15s", "15s",
@@ -100,7 +100,7 @@ const char* const delay_text[DELAY_COUNT] = {
"30min", "30min",
}; };
const uint32_t delay_value[DELAY_COUNT] = const uint32_t delay_value[DELAY_COUNT] =
{0, 1000, 5000, 10000, 15000, 30000, 60000, 90000, 120000, 300000, 600000, 1800000}; {0, 2000, 5000, 10000, 15000, 30000, 60000, 90000, 120000, 300000, 600000, 1800000};
#define VIBRO_COUNT 2 #define VIBRO_COUNT 2
const char* const vibro_text[VIBRO_COUNT] = { const char* const vibro_text[VIBRO_COUNT] = {