-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathget-sensor-data.js
101 lines (85 loc) · 3.38 KB
/
get-sensor-data.js
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
99
100
101
const Tracking = require('tracking-api');
const userApi = new Tracking.UserApi();
const deviceApi = new Tracking.DeviceApi();
const USERNAME = 'MYUSERNAME';
const PASSWORD = 'MYPASSWORD';
async function login(){
return new Promise((resolve,reject) => {
userApi.userLogin({username: USERNAME, password: PASSWORD}, {}, (err, res) => {
if (err) return reject(new Error('Login Failed'));
const authToken = res.id;
const userId = res.userId;
//Authenticate our clients
userApi.apiClient.defaultHeaders.Authorization = authToken;
deviceApi.apiClient.defaultHeaders.Authorization = authToken;
resolve(userId);
});
})
}
async function getDevices(userId){
return new Promise((resolve,reject) => {
userApi.userPrototypeGetDevices(userId, {}, (err, devices)=>{
if(err) reject(err);
else resolve(devices);
});
})
}
async function getRecentReadingsForDevice(deviceId, sensorType){
return new Promise((resolve,reject) => {
deviceApi.devicePrototypeGetReadings(deviceId, {
filter: JSON.stringify({// filter needs to be a JSON encoded string
//Optional query filters
where: {
timestamp: {between: [+new Date() - 7 * 24 * 3600 * 1000, new Date()]}, // last 7 days
type: sensorType
},
order: 'timestamp DESC', // get the newest readings first
limit: 100 //only get the 100 newest points
})
}, (err, data) => {
if(err) reject(err);
else resolve(data)
})
})
}
async function getRecentUwbReadingsForDevice(deviceId){
return new Promise((resolve,reject) => {
deviceApi.devicePrototypeGetGatewayReadings(deviceId, {
filter: JSON.stringify({// filter needs to be a JSON encoded string
//Optional query filters
where: {
timestamp: {between: [+new Date() - 7 * 24 * 3600 * 1000, new Date()]}, // last 7 days
type: 'uwb_seen'
},
order: 'timestamp DESC', // get the newest readings first
limit: 100 //only get the 100 newest points
})
}, (err, data) => {
if(err) reject(err);
else resolve(data)
})
})
}
async function main() {
const userId = await login();
const devices = await getDevices(userId);
//Create map of devices by id for easy access
const deviceDict = {};
for(const device of devices){
deviceDict[device.id] = device;
}
for(const device of devices) {
// Temperature Example
// const readings = await getRecentReadingsForDevice(device.id, 'temp'); // to get temperature data
// readings.forEach( reading => {
// console.log(`${device.name}: Temp = ${reading.value}C @ ${reading.timestamp}`);
// });
// UWB ranging Example
const readings = await getRecentUwbReadingsForDevice(device.id);
readings.forEach( reading => {
const relatedDeviceName = (deviceDict[reading.deviceId] && deviceDict[reading.deviceId].name) || reading.deviceId;
console.log(`Device ${device.name} was ${reading.value}cm away from ${relatedDeviceName} @ ${reading.timestamp}`)
});
}
}
main();