diff --git a/README.md b/README.md index 44bd4c7..cd3873f 100644 --- a/README.md +++ b/README.md @@ -235,10 +235,13 @@ Work is in progress... --- ## Version history +#### v0.9.702 +- fixed compilation error for Nokia5110 displays + #### v0.9.700 - added support for **ST7789 320x170** displays \ `#define DSP_MODEL DSP_ST7789_170` -- added support for **LCD 20x2** displays (e.g. [WH2002A](https://aliexpress.com/item/32812259852.html)) +- added support for **LCD 20x2** displays (e.g. [WH2002A](https://aliexpress.com/item/32812259852.html)) \ `#define DSP_MODEL DSP_2002` or \ `#define DSP_MODEL DSP_2002I2C` - added Russian language support for LCD displays that natively support Russian \ diff --git a/yoRadio/src/core/options.h b/yoRadio/src/core/options.h index aa4e7de..da7d1e3 100644 --- a/yoRadio/src/core/options.h +++ b/yoRadio/src/core/options.h @@ -2,7 +2,7 @@ #define options_h #pragma once -#define YOVERSION "0.9.700" +#define YOVERSION "0.9.702" /******************************************************* DO NOT EDIT THIS FILE. diff --git a/yoRadio/src/displays/conf/displayST7789_170conf.h b/yoRadio/src/displays/conf/displayST7789_170conf.h index c346d4d..422a655 100644 --- a/yoRadio/src/displays/conf/displayST7789_170conf.h +++ b/yoRadio/src/displays/conf/displayST7789_170conf.h @@ -1,5 +1,5 @@ /************************************************************************************* - ST7789 320x240 displays configuration file. + ST7789 320x170 displays configuration file. Copy this file to yoRadio/src/displays/conf/displayST7789conf_custom.h and modify it More info on https://github.com/e2002/yoradio/wiki/Widgets#widgets-description diff --git a/yoRadio/src/displays/conf/displayST7789_76conf.h b/yoRadio/src/displays/conf/displayST7789_76conf.h index 226fa65..475f067 100644 --- a/yoRadio/src/displays/conf/displayST7789_76conf.h +++ b/yoRadio/src/displays/conf/displayST7789_76conf.h @@ -1,6 +1,6 @@ /************************************************************************************* - SSD1305 265x64 displays configuration file. - Copy this file to yoRadio/src/displays/conf/displaySSD1322conf_custom.h + ST7789 284x76 displays configuration file. + Copy this file to yoRadio/src/displays/conf/displayST7789conf_custom.h and modify it More info on https://github.com/e2002/yoradio/wiki/Widgets#widgets-description *************************************************************************************/ diff --git a/yoRadio/src/displays/displayN5110.h b/yoRadio/src/displays/displayN5110.h index b2705db..7a8698a 100644 --- a/yoRadio/src/displays/displayN5110.h +++ b/yoRadio/src/displays/displayN5110.h @@ -7,7 +7,7 @@ #include "fonts/TinyFont5.h" #include "fonts/TinyFont6.h" #include "fonts/bootlogo21x28.h" -#include "fonts/bootlogo35.h" +#include "fonts/dsfont19.h" typedef GFXcanvas1 Canvas; typedef Adafruit_PCD8544 yoDisplay;