4956e9f3c61eec2662056f746289c52db4abeb8a
[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 speed();
21     double temperature();
22     double battery_voltage();
23     double drogue_voltage();
24     double main_voltage();
25     boolean has_accel();
26 }
27