This commit is contained in:
e2002
2022-02-27 19:33:44 +03:00
parent 36e2f096de
commit bb0d60cd70
3 changed files with 5 additions and 2 deletions

View File

@@ -186,6 +186,9 @@ _\*this step can be skipped if you add WiFiSSID WiFiPassword pairs to the [yoRad
--- ---
## Version history ## Version history
#### v0.4.293
- IR repeat fix
#### v0.4.292 #### v0.4.292
- added support for IR control - 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)_ - 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)_

View File

@@ -118,7 +118,7 @@ void irLoop() {
Serial.print(resultToHumanReadableBasic(&irResults)); Serial.print(resultToHumanReadableBasic(&irResults));
return; return;
} }
if (!irResults.repeat && irResults.command!=0) { if (!irResults.repeat/* && irResults.command!=0*/) {
irVolRepeat = 0; irVolRepeat = 0;
} }
switch (irVolRepeat) { switch (irVolRepeat) {

View File

@@ -1,7 +1,7 @@
#ifndef options_h #ifndef options_h
#define options_h #define options_h
#define VERSION "0.4.292" #define VERSION "0.4.293"
#if __has_include("myoptions.h") #if __has_include("myoptions.h")
#include "myoptions.h" // <- write your variable values here #include "myoptions.h" // <- write your variable values here