clockfont_mono_070

This commit is contained in:
e2002
2023-03-13 17:59:55 +03:00
parent f7d50daa00
commit 81e900c03c
29 changed files with 882 additions and 39 deletions

View File

@@ -103,6 +103,7 @@ void Config::loadTheme(){
theme.vumax = color565(COLOR_VU_MAX);
theme.vumin = color565(COLOR_VU_MIN);
theme.clock = color565(COLOR_CLOCK);
theme.clockbg = color565(COLOR_CLOCK_BG);
theme.seconds = color565(COLOR_SECONDS);
theme.dow = color565(COLOR_DAY_OF_W);
theme.date = color565(COLOR_DATE);

View File

@@ -52,6 +52,7 @@ struct theme_t {
uint16_t vumax;
uint16_t vumin;
uint16_t clock;
uint16_t clockbg;
uint16_t seconds;
uint16_t dow;
uint16_t date;

View File

@@ -1,7 +1,7 @@
#ifndef options_h
#define options_h
#define YOVERSION "0.9.058"
#define YOVERSION "0.9.070"
/*******************************************************
DO NOT EDIT THIS FILE.
@@ -296,6 +296,9 @@ The connection tables are located here https://github.com/e2002/yoradio#connecti
#ifndef RSSI_STEPS
#define RSSI_STEPS -50,-60,-70,-80
#endif
#ifndef CLOCKFONT_MONO
#define CLOCKFONT_MONO true // monospace clock font
#endif
/*
*** ST7735 display submodel ***
INITR_BLACKTAB // 1.8' https://aliexpress.ru/item/1005002822797745.html
@@ -349,6 +352,9 @@ The connection tables are located here https://github.com/e2002/yoradio#connecti
#ifndef COLOR_CLOCK
#define COLOR_CLOCK 231, 211, 90
#endif
#ifndef COLOR_CLOCK_BG
#define COLOR_CLOCK_BG 27, 27, 27
#endif
#ifndef COLOR_SECONDS
#define COLOR_SECONDS 231, 211, 90
#endif