Skip to content

Commit fd08650

Browse files
committed
v0.9.084
1 parent 63d8d94 commit fd08650

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -226,6 +226,10 @@ Work is in progress...
226226

227227
---
228228
## Version history
229+
#### v0.9.084
230+
- 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
231+
- new parameter ```#define COLOR_CLOCK_BG R,G,B``` - color of inactive clock segments
232+
229233
#### v0.9.058
230234
- added support for ST7920 128x64 2.6' OLED display https://aliexpress.com/item/32699482638.html
231235

yoRadio/src/core/options.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef options_h
22
#define options_h
33

4-
#define YOVERSION "0.9.082"
4+
#define YOVERSION "0.9.084"
55

66
/*******************************************************
77
DO NOT EDIT THIS FILE.

yoRadio/src/displays/conf/displaySSD1322conf.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*************************************************************************************
2-
SSD1305 128x64 displays configuration file.
3-
Copy this file to yoRadio/src/displays/conf/displaySSD1305conf_custom.h
2+
SSD1305 265x64 displays configuration file.
3+
Copy this file to yoRadio/src/displays/conf/displaySSD1322conf_custom.h
44
and modify it
55
More info on https://github.com/e2002/yoradio/wiki/Widgets#widgets-description
66
*************************************************************************************/

yoRadio/src/displays/conf/displayST7789conf.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ const WidgetConfig apNameConf PROGMEM = { TFT_FRAMEWDT, 66, 2, WA_CENTER };
4444
const WidgetConfig apName2Conf PROGMEM = { TFT_FRAMEWDT, 90, 2, WA_CENTER };
4545
const WidgetConfig apPassConf PROGMEM = { TFT_FRAMEWDT, 130, 2, WA_CENTER };
4646
const WidgetConfig apPass2Conf PROGMEM = { TFT_FRAMEWDT, 154, 2, WA_CENTER };
47-
const WidgetConfig clockConf PROGMEM = { 12, 176, 52, WA_RIGHT }; /* 52 is a fixed font size. do not change */
47+
const WidgetConfig clockConf PROGMEM = { 8, 176, 52, WA_RIGHT }; /* 52 is a fixed font size. do not change */
4848
const WidgetConfig vuConf PROGMEM = { TFT_FRAMEWDT, 100, 1, WA_LEFT };
4949

5050
const WidgetConfig bootWdtConf PROGMEM = { 0, 162, 1, WA_CENTER };

0 commit comments

Comments
 (0)