add compass bearing during descent
[fw/altos] / ao-tools / 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 pressure();
20     double altitude();
21     double height();
22     double accel_speed();
23     double baro_speed();
24     double temperature();
25     double battery_voltage();
26     double drogue_voltage();
27     double main_voltage();
28 }
29