Laser1083 / minimosd-extra

Automatically exported from code.google.com/p/minimosd-extra
0 stars 0 forks source link

OSD panel switch uses incorrect ranges for second panel #91

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
The code below in OSD_Panels.ino is strange/buggy.  The OSD panel switch 
channel has to be tweaked to get the second panel.

//Second panel
        else if (ch_raw >= 1233 && ch_raw <= 1467 && panel != 1) { //second panel
          osd_clear = 1;
          //osd.clear();
          panel = 1;
        }

It should read something like
        else if (ch_raw >= 1233 && ch_raw <= 1667 && panel != 1) { //second 

Original issue reported on code.google.com by pwbec...@hotmail.com on 18 Oct 2014 at 6:08

GoogleCodeExporter commented 8 years ago
Closed as we have a new version.

Ifthe problem is still present please reopen it.

Original comment by gabek...@gmail.com on 28 Nov 2014 at 11:44