This commit is contained in:
e2002
2022-10-14 16:35:49 +03:00
parent 1c4b1dec6e
commit aac04b6a9e
4 changed files with 7 additions and 3 deletions

View File

@@ -299,6 +299,10 @@ Work is in progress...
--- ---
## Version history ## Version history
#### v0.8.01b
- fix INITR_MINI160x80 compiling error
- fix ENC_INTERNALPULLUP descriotion in exsamples/myoptions.h
#### v0.8.00b #### v0.8.00b
- rewritten the display engine - rewritten the display engine
- added the ability to position widgets on the display using configuration files. More info in yoRadio/src/displays/conf/ and here https://github.com/e2002/yoradio/wiki/Widgets - added the ability to position widgets on the display using configuration files. More info in yoRadio/src/displays/conf/ and here https://github.com/e2002/yoradio/wiki/Widgets

View File

@@ -60,7 +60,7 @@ The connection tables are located here https://github.com/e2002/yoradio#connecti
//#define ENC_BTNL 255 /* Left rotation */ //#define ENC_BTNL 255 /* Left rotation */
//#define ENC_BTNB 255 /* Encoder button */ //#define ENC_BTNB 255 /* Encoder button */
//#define ENC_BTNR 255 /* Right rotation */ //#define ENC_BTNR 255 /* Right rotation */
//#define ENC_INTERNALPULLUP true /* Enabl//#define LED_BUILTIN 2 /* LED Pin */e the weak pull up resistors */ //#define ENC_INTERNALPULLUP true /* Enable the weak pull up resistors */
//#define ENC_HALFQUARD true /* Experiment with it */ //#define ENC_HALFQUARD true /* Experiment with it */
/******************************************/ /******************************************/

View File

@@ -1,7 +1,7 @@
#ifndef options_h #ifndef options_h
#define options_h #define options_h
#define VERSION "0.8.00b" #define VERSION "0.8.01b"
/******************************************************* /*******************************************************
DO NOT EDIT THIS FILE. DO NOT EDIT THIS FILE.

View File

@@ -62,7 +62,7 @@ const char rssiFmt[] PROGMEM = "%d";
//const char iptxtFmt[] PROGMEM = "%s"; //const char iptxtFmt[] PROGMEM = "%s";
//const char voltxtFmt[] PROGMEM = "%d"; //const char voltxtFmt[] PROGMEM = "%d";
const char bitrateFmt[] PROGMEM = "%d"; const char bitrateFmt[] PROGMEM = "%d";
*/
/* MOVES */ /* { left, top, width } */ /* MOVES */ /* { left, top, width } */
const MoveConfig clockMove PROGMEM = { 14, 29+34, 0}; const MoveConfig clockMove PROGMEM = { 14, 29+34, 0};
const MoveConfig weatherMove PROGMEM = { TFT_FRAMEWDT, 80-13, MAX_WIDTH-6*3-4-30 }; const MoveConfig weatherMove PROGMEM = { TFT_FRAMEWDT, 80-13, MAX_WIDTH-6*3-4-30 };