User manual

U-See User Manual - Settings Menu
hold on;
grid on;
axis equal;
plot (Longitude,Latitude);
title ('Position 2D');
figure
hold on;
grid on;
title ('Speed');
plot (IAS);
plot (GroundSpeed,'r');
legend ('IAS [km/h]','GroundSpeed [km/h]');
figure
hold on;
grid on;
title ('Speed in Horizontal axis');
plot (VNorth,'r');
plot (VEast,'g');
legend ('Speed North [km/h]','Speed East [km/h]');
figure
hold on
title ('Vertical speed');
grid on;
plot (VDown./3.6);
legend('Speed Down [m/s]');
figure
hold on;
grid on;
title ('Altitude');
plot (Altitude,'r');
plot (CommandedAltitude,'b');
legend ('altitude [m]','Commanded Altitude [m]');
figure
hold on;
grid on;
title ('Speed Control Loop');
plot (IAS,'r');
plot (CommandedIAS,'b');
legend ('IAS[km/h]','Commanded IAS[km/h]');
figure
hold on;
grid on;
title ('ADC readings');
plot (Battery1,'r');
plot (Battery2,'g');
plot (Battery3,'b');
plot (Battery4,'k');
legend ('ADC in 1','ADC in 2','ADC in 3','Main system voltage');
%% -------------- End of file ------------
Document Version 1.25 74