-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrover2022_station.json
38 lines (34 loc) · 1.44 KB
/
rover2022_station.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
{
"host": "10.49.182.72",
"port": 3306,
"user": "root",
"password": "",
"nameDB": "rover2022",
"tableInfo": [
{
"nameTable": "sensor",
"atributes": [
{"atribute": ["id", "INT", "AUTO_INCREMENT PRIMARY KEY"]},
{"atribute": ["time", "TIMESTAMP", "DEFAULT CURRENT_TIMESTAMP"]},
{"atribute": ["vibration1", "VARCHAR(20)", ""] },
{"atribute": ["vibration2", "VARCHAR(20)", ""] },
{"atribute": ["vibration3", "VARCHAR(20)", ""] },
{"atribute": ["vibration4", "VARCHAR(20)", ""] },
{"atribute": ["gasCO2", "DOUBLE", ""] },
{"atribute": ["humidity", "DOUBLE", ""] },
{"atribute": ["pressure", "DOUBLE", ""] },
{"atribute": ["altitude", "DOUBLE", ""] },
{"atribute": ["temperature", "DOUBLE", ""] },
{"atribute": ["roll", "INT", ""] },
{"atribute": ["pitch", "INT", ""] },
{"atribute": ["yaw", "INT", ""] },
{"atribute": ["speed", "INT", ""] },
{"atribute": ["gravity1_x", "DOUBLE", ""] },
{"atribute": ["gravity1_y", "DOUBLE", ""] },
{"atribute": ["gravity1_z", "DOUBLE", ""] },
{"atribute": ["light1", "DOUBLE", ""] },
{"atribute": ["heart_rate1", "DOUBLE", ""] }
]
}
]
}