diff --git a/README.md b/README.md index 755b984..7d68a58 100644 --- a/README.md +++ b/README.md @@ -226,6 +226,10 @@ Work is in progress... --- ## Version history +#### v0.9.084 +- monospace fonts for clock on TFT displays. Fonts can be restored to their original form by adding the ```#define CLOCKFONT_MONO false``` parameter to the myoptions.h file +- new parameter ```#define COLOR_CLOCK_BG R,G,B``` - color of inactive clock segments + #### v0.9.058 - added support for ST7920 128x64 2.6' OLED display https://aliexpress.com/item/32699482638.html diff --git a/yoRadio/src/core/options.h b/yoRadio/src/core/options.h index daeef51..5f6bc88 100644 --- a/yoRadio/src/core/options.h +++ b/yoRadio/src/core/options.h @@ -1,7 +1,7 @@ #ifndef options_h #define options_h -#define YOVERSION "0.9.082" +#define YOVERSION "0.9.084" /******************************************************* DO NOT EDIT THIS FILE. diff --git a/yoRadio/src/displays/conf/displaySSD1322conf.h b/yoRadio/src/displays/conf/displaySSD1322conf.h index b38e57d..aa734e2 100644 --- a/yoRadio/src/displays/conf/displaySSD1322conf.h +++ b/yoRadio/src/displays/conf/displaySSD1322conf.h @@ -1,6 +1,6 @@ /************************************************************************************* - SSD1305 128x64 displays configuration file. - Copy this file to yoRadio/src/displays/conf/displaySSD1305conf_custom.h + SSD1305 265x64 displays configuration file. + Copy this file to yoRadio/src/displays/conf/displaySSD1322conf_custom.h and modify it More info on https://github.com/e2002/yoradio/wiki/Widgets#widgets-description *************************************************************************************/ diff --git a/yoRadio/src/displays/conf/displayST7789conf.h b/yoRadio/src/displays/conf/displayST7789conf.h index cf3c020..5cb32c3 100644 --- a/yoRadio/src/displays/conf/displayST7789conf.h +++ b/yoRadio/src/displays/conf/displayST7789conf.h @@ -44,7 +44,7 @@ const WidgetConfig apNameConf PROGMEM = { TFT_FRAMEWDT, 66, 2, WA_CENTER }; const WidgetConfig apName2Conf PROGMEM = { TFT_FRAMEWDT, 90, 2, WA_CENTER }; const WidgetConfig apPassConf PROGMEM = { TFT_FRAMEWDT, 130, 2, WA_CENTER }; const WidgetConfig apPass2Conf PROGMEM = { TFT_FRAMEWDT, 154, 2, WA_CENTER }; -const WidgetConfig clockConf PROGMEM = { 12, 176, 52, WA_RIGHT }; /* 52 is a fixed font size. do not change */ +const WidgetConfig clockConf PROGMEM = { 8, 176, 52, WA_RIGHT }; /* 52 is a fixed font size. do not change */ const WidgetConfig vuConf PROGMEM = { TFT_FRAMEWDT, 100, 1, WA_LEFT }; const WidgetConfig bootWdtConf PROGMEM = { 0, 162, 1, WA_CENTER };