You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is enhancement suggestion:
Is it possible to show decimals like 0.6m for altitude?
For all flying multicopters alt above the ground is critical. Most of flight
controllers are using MS5611 pressure sensor with 0.1m resolution. It will be
great to see decimals of altitude if it is, lets say less then 10m above the
ground level (home altitude). This range and decimal option can be configurable.
Original issue reported on code.google.com by i...@koronker.ru on 22 Oct 2013 at 12:54
The text was updated successfully, but these errors were encountered:
To enable decimals in alt to be shown <10m the following changes in code need
to be done: in OSD_Panels.ino line 429
osd.printf("%c%5.0f%c",0xE7, (double)((osd_alt - osd_home_alt) * converth), high);
should be changed to
// if Altitude closer to home/ground then 10 meters show decimal in home
altitude
if (abs(osd_alt - osd_home_alt) < 10 ) { osd.printf("%c%5.1f%c",0xE7, (double)((osd_alt - osd_home_alt) * converth), high);}
else { osd.printf("%c%5.0f%c",0xE7, (double)((osd_alt - osd_home_alt) * converth), high);}
Please include it into next version.
Original comment by i...@koronker.ru on 24 Oct 2013 at 2:46
Original issue reported on code.google.com by
i...@koronker.ru
on 22 Oct 2013 at 12:54The text was updated successfully, but these errors were encountered: