This commit is contained in:
e2002
2025-09-01 15:45:07 +03:00
parent f82f4e38cf
commit 7e142d56dd
5 changed files with 9 additions and 6 deletions

View File

@@ -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 \

View File

@@ -2,7 +2,7 @@
#define options_h
#pragma once
#define YOVERSION "0.9.700"
#define YOVERSION "0.9.702"
/*******************************************************
DO NOT EDIT THIS FILE.

View File

@@ -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

View File

@@ -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
*************************************************************************************/

View File

@@ -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;