stevo27120 / minimosd-extra

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

Question #17

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
The OSD works fine. I can change via rc through the 3 screens (1,2,off). When I 
land and take the throttle to 0%, the screen shows a summary of flight-date. 

Is there any possibility to take this off and normal screen (1, 2 or off) is 
shown?

Best regards

Original issue reported on code.google.com by schoppl...@gmail.com on 8 Mar 2013 at 11:08

GoogleCodeExporter commented 8 years ago
Hi schopplick,

This line is responsible for this in plane FW:
if ((osd_alt - osd_home_alt) <= 10 && osd_groundspeed <= 1 && osd_throttle <= 1 
&& takeofftime == 1 && osd_home_distance <= 100)

So. If you give 2% throttle than you can see the normal screens.

Gábor

Original comment by gabek...@gmail.com on 12 Mar 2013 at 4:46

GoogleCodeExporter commented 8 years ago
[deleted comment]
GoogleCodeExporter commented 8 years ago
[deleted comment]
GoogleCodeExporter commented 8 years ago
If you don't want summary at all, simply delete thies lines:

if ((osd_alt - osd_home_alt) <= 10 && osd_groundspeed <= 1 && osd_throttle <= 1 
&& takeofftime == 1 && osd_home_distance <= 100){ 
       if (osd_clear == 0){
         osd.clear(); 
         osd_clear = 1;          
       }
      panFdata(); 
        }else{ 
          if (osd_clear == 1){
         osd.clear(); 
         osd_clear = 0;          
       }

Original comment by gabek...@gmail.com on 12 Mar 2013 at 4:54

GoogleCodeExporter commented 8 years ago
Ok. I must take a look. I can programming, but I don't really program with 
aurduino now. I'll take a look to code in future. ;-) Now i must do something 
for university... ;-)

Best regards

Original comment by schoppl...@gmail.com on 12 Mar 2013 at 5:19

GoogleCodeExporter commented 8 years ago

Original comment by gabek...@gmail.com on 19 Mar 2013 at 8:08