diff --git a/README.md b/README.md index b29a50f..c98c9a8 100644 --- a/README.md +++ b/README.md @@ -186,6 +186,9 @@ _\*this step can be skipped if you add WiFiSSID WiFiPassword pairs to the [yoRad --- ## Version history +#### v0.4.293 +- IR repeat fix + #### v0.4.292 - added support for IR control - new options in options.h (ENC_INTERNALPULLUP, ENC_HALFQUARD, BTN_INTERNALPULLUP, VOL_STEP) _//Thanks for [Buska1968](https://4pda.to/forum/index.php?s=&showtopic=1010378&view=findpost&p=113385448)_ diff --git a/yoRadio/controls.cpp b/yoRadio/controls.cpp index 4788c9a..c7050d0 100644 --- a/yoRadio/controls.cpp +++ b/yoRadio/controls.cpp @@ -118,7 +118,7 @@ void irLoop() { Serial.print(resultToHumanReadableBasic(&irResults)); return; } - if (!irResults.repeat && irResults.command!=0) { + if (!irResults.repeat/* && irResults.command!=0*/) { irVolRepeat = 0; } switch (irVolRepeat) { diff --git a/yoRadio/options.h b/yoRadio/options.h index a77a0df..343dcb4 100644 --- a/yoRadio/options.h +++ b/yoRadio/options.h @@ -1,7 +1,7 @@ #ifndef options_h #define options_h -#define VERSION "0.4.292" +#define VERSION "0.4.293" #if __has_include("myoptions.h") #include "myoptions.h" // <- write your variable values here