BatteryFact.json 1.51 KB
Newer Older
1 2 3 4
{
    "version":      1,
    "fileType":  "FactMetaData",
    "QGC.MetaData.Facts":
5
[
Don Gagne's avatar
Don Gagne committed
6
{
7
    "name":             "voltage",
8
    "shortDesc": "Voltage",
9 10 11 12 13 14
    "type":             "double",
    "decimalPlaces":    2,
    "units":            "v"
},
{
    "name":             "percentRemaining",
15
    "shortDesc": "Percent",
16
    "type":             "double",
17 18 19 20 21
    "decimalPlaces":    0,
    "units":            "%"
},
{
    "name":             "mahConsumed",
22
    "shortDesc": "Consumed",
23 24 25
    "type":             "double",
    "decimalPlaces":    0,
    "units":            "mAh"
26 27 28
},
{
    "name":             "current",
29
    "shortDesc": "Current",
30
    "type":             "double",
31
    "decimalPlaces":    2,
32
    "units":            "A"
33 34 35
},
{
    "name":             "temperature",
36
    "shortDesc": "Temperature",
37 38
    "type":             "double",
    "decimalPlaces":    0,
39 40
    "units":            "C"
},
41 42
{
    "name":             "instantPower",
43
    "shortDesc": "Watts",
44
    "type":             "double",
45 46
    "decimalPlaces":    2,
    "units":            "W"
47 48 49
},
{
    "name":             "timeRemaining",
50
    "shortDesc": "Time Remaining",
51 52
    "type":             "double",
    "decimalPlaces":    0,
53 54 55 56
    "units":            "s"
},
{
    "name":             "chargeState",
57
    "shortDesc": "Charge State",
58
    "type":             "uint8",
59
    "enumStrings":      "n/a,Normal Operation,Low Battery State,Critical Battery State,Emergency Battery State,Battery Failed,Battery Unhealthy",
60 61
    "enumValues":       "0,1,2,3,4,5,6",
    "decimalPlaces":    0
Don Gagne's avatar
Don Gagne committed
62
}
63
]
64
}