Add GPS height to the usual plot
[fw/altos] / altosui / AltosDataPoint.java
1
2 // Copyright (c) 2010 Anthony Towns
3 // GPL v2 or later
4
5 package altosui;
6
7 interface AltosDataPoint {
8     int version();
9     int serial();
10     int flight();
11     String callsign();
12     double time();
13     double rssi();
14
15     int state();
16     String state_name();
17
18     double acceleration();
19     double height();
20     double gps_height();
21     double speed();
22     double temperature();
23     double battery_voltage();
24     double drogue_voltage();
25     double main_voltage();
26     boolean has_accel();
27 }
28