Hab alles gefunden bis auf Distance to Mav/home... scheint es nicht zu geben die Nachricht...
//variable aus dem APM die interessieren
//Strom ( #1 )
int16_t current_battery; //Battery current, in 10*milliamperes (1 = 10 milliampere), -1: autopilot does not measure the current
//Spannung ( #1 )
uint16_t voltage_battery; //Battery voltage, in millivolts (1 = 1 millivolt)
//Restakkukapazität ( #1 )
int8_t battery_remaining; //Remaining battery energy: (0%: 0, 100%: 100), -1: autopilot estimate the remaining battery
//SatAnzahl ( #24 )
uint8_t satellites_visible; //Number of satellites visible. If unknown, set to 255
uint8_t fix_type; //0-1: no fix, 2: 2D fix, 3: 3D fix. Some applications will not use the value of this field unless it is at least two, so always correctly fill in the fix.
//Flug-Modi
uint8_t base_mode; // System mode bitfield, see MAV_MODE_FLAGS ENUM in mavlink/include/mavlink_types.h
/* aus ...ArduCopter/defines.h
// Auto Pilot modes
// ----------------
#define STABILIZE 0 // hold level position
#define ACRO 1 // rate control
#define ALT_HOLD 2 // AUTO control
#define AUTO 3 // AUTO control
#define GUIDED 4 // AUTO control
#define LOITER 5 // Hold a single location
#define RTL 6 // AUTO control
#define CIRCLE 7 // AUTO control
#define POSITION 8 // AUTO control
#define LAND 9 // AUTO control
#define OF_LOITER 10 // Hold a single location using optical flow sensor
#define TOY_A 11 // THOR Enum for Toy mode
#define TOY_M 12 // THOR Enum for Toy mode
#define SPORT 13 // earth frame rate control
#define NEWFLIGHTMODE 14 // new flight mode description
#define NUM_MODES 15
*/
//GPS Posi (lon/lat) ( #33 )
int32_t lat; //Latitude, expressed as * 1E7
int32_t lon; //Longitude, expressed as * 1E7
//Höhe (rel, abs) ( #33 )
int32_t alt ; //Altitude in meters, expressed as * 1000 (millimeters), above MSL
int32_t relative_alt; //Altitude above ground in meters, expressed as * 1000 (millimeters)
//Distanz to Home
???
//Geschwindigkeit ( #24 )
uint16_t vel; //GPS ground speed (m/s * 100). If unknown, set to: UINT16_MAX
//Ausrichtung (Kompass)
uint16_t hdg; //Compass heading in degrees * 100, 0.0..359.99 degrees. If unknown, set to: UINT16_MAX
oder findet die einer von euch hier:
https://pixhawk.ethz.ch/mavlink/
G Termi