glcd: new option for scroll text on/off added

Origin commit data
------------------
Commit: a1aa348882
Author: BPanther <bpanther_ts@hotmail.com>
Date: 2023-08-13 (Sun, 13 Aug 2023)

Origin message was:
------------------
nglcd: new option for scroll text on/off added

Signed-off-by: Thilo Graf <dbt@novatux.de>
This commit is contained in:
BPanther
2023-08-14 22:59:47 +02:00
committed by Thilo Graf
parent 04e39c2f43
commit d13780e893
8 changed files with 78 additions and 21 deletions

View File

@@ -965,6 +965,7 @@ typedef enum
LOCALE_GLCD_PROGRESSBAR_X_POSITION,
LOCALE_GLCD_PROGRESSBAR_Y_POSITION,
LOCALE_GLCD_RESTART,
LOCALE_GLCD_SCROLL,
LOCALE_GLCD_SCROLL_SPEED,
LOCALE_GLCD_STANDBY_CLOCK,
LOCALE_GLCD_STANDBY_CLOCK_ANALOG,

View File

@@ -965,6 +965,7 @@ const char * locale_real_names[] =
"glcd.progressbar_x_position",
"glcd.progressbar_y_position",
"glcd.restart",
"glcd.scroll",
"glcd.scroll_speed",
"glcd.standby_clock",
"glcd.standby_clock_analog",

View File

@@ -198,13 +198,13 @@ struct SNeutrinoTheme
struct timer_remotebox_item
{
unsigned int port;
std::string user;
std::string pass;
std::string rbname;
std::string rbaddress;
bool enabled;
bool online;
unsigned int port;
std::string user;
std::string pass;
std::string rbname;
std::string rbaddress;
bool enabled;
bool online;
};
#define GLCD_DEFAULT_BRIGHTNESS 10
@@ -329,6 +329,7 @@ struct SNeutrinoSettings
int glcd_brightness_standby;
int glcd_mirror_osd;
int glcd_mirror_video;
int glcd_scroll;
int glcd_scroll_speed;
int glcd_selected_config;
#endif