forked from KU-Solar-Car/TelemetryClient
-
Notifications
You must be signed in to change notification settings - Fork 0
/
database_format.json
98 lines (98 loc) · 1.8 KB
/
database_format.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"battery_voltage": {
"category": "bms",
"name": "Battery Voltage",
"unit": " V",
"safe_max": 2,
"safe_min": 0
},
"battery_current": {
"category": "bms",
"name": "Output Current",
"unit": " A",
"safe_max": 100,
"safe_min": 0
},
"battery_temperature": {
"category": "bms",
"name": "Battery Temperature",
"unit": " °C",
"safe_max": 100,
"safe_min": 0
},
"bms_fault": {
"category": "bms",
"name": "Isolation Fault Sensor",
"safe_max": null,
"safe_min": null
},
"gps_time": {
"category": "gps",
"name": "GPS Timestamp",
"safe_max": null,
"safe_min": null
},
"gps_lat": {
"category": "gps",
"name": "Latitude",
"unit": " °",
"safe_max": null,
"safe_min": null
},
"gps_lon": {
"category": "gps",
"name": "Longitude",
"unit": " °",
"safe_max": null,
"safe_min": null
},
"gps_velocity_east": {
"category": "gps",
"name": "Eastward velocity (via GPS)",
"unit": " mph",
"safe_max": null,
"safe_min": null
},
"gps_velocity_north": {
"category": "gps",
"name": "Northward velocity (via GPS)",
"unit": " mph",
"safe_max": null,
"safe_min": null
},
"gps_velocity_up": {
"category": "gps",
"name": "Upward velocity (via GPS)",
"unit": " mph",
"safe_max": null,
"safe_min": null
},
"gps_speed": {
"category": "gps",
"name": "Car speed (via GPS)",
"unit": " km",
"safe_max": null,
"safe_min": null
},
"solar_voltage": {
"category": "mppt",
"name": "Input voltage (from solar)",
"unit": " V",
"safe_max": 100,
"safe_min": 0
},
"solar_current": {
"category": "mppt",
"name": "Input current (from solar)",
"unit": " A",
"safe_max": 100,
"safe_min": 0
},
"motor_speed": {
"category": "motor",
"name": "Car speed (via motor controller)",
"unit": " mph",
"safe_max": 100,
"safe_min": 0
}
}