forked from homebridge/homebridge-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtestloop.js
82 lines (62 loc) · 1.88 KB
/
testloop.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
function sleep(ms) {
return new Promise((resolve) => setTimeout(resolve, ms));
}
let _lastApiRequest;
let _allMetrics = null;
let _fetchingMetrics = false;
test();
async function test() {
for (let i = 0; i <= 10; i++) {
await Promise.all([
getAndLogMetric('A_CYC_TEMP_EXTRACT_AIR'),
getAndLogMetric('A_CYC_TEMP_EXHAUST_AIR'),
getAndLogMetric('A_CYC_TEMP_OUTDOOR_AIR'),
getAndLogMetric('A_CYC_TEMP_SUPPLY_AIR'),
]);
console.log(' --------------------');
await sleep(1000);
}
}
async function getAndLogMetric(metric) {
const value = await getMetric(metric);
console.log(' ' + metric + ' ' + value);
}
async function getMetric(metric) {
if (!_fetchingMetrics) {
// check if cache needs to be renewed (after 3 seconds)
const isOldCache = (Date.now() - _lastApiRequest) > 3000;
if (_allMetrics === null || isOldCache) {
_fetchingMetrics = true;
console.log('Fetching metrics');
await fetchMetrics();
_fetchingMetrics = false;
}
}
return _allMetrics !== null ? _allMetrics[metric] : 0;
}
async function fetchMetrics() {
try {
const Vallox = require('@danielbayerlein/vallox-api');
const valloxService = new Vallox({ ip: '192.168.0.9', port: 80 });
const start = Date.now();
_allMetrics = await valloxService.fetchMetrics([
'A_CYC_TEMP_EXTRACT_AIR',
'A_CYC_TEMP_EXHAUST_AIR',
'A_CYC_TEMP_OUTDOOR_AIR',
'A_CYC_TEMP_SUPPLY_AIR',
'A_CYC_ANALOG_SENSOR_INPUT',
'A_CYC_HOME_SPEED_SETTING',
'A_CYC_BOOST_SPEED_SETTING',
'A_CYC_AWAY_SPEED_SETTING',
]);
//await sleep(4000);
console.log('Done. Took ' + (Date.now() - start) / 1000 + ' seconds');
_lastApiRequest = Date.now();
} catch (e) {
if (typeof e === 'string') {
console.log(e.toUpperCase());
} else if (e instanceof Error) {
console.log(e.message);
}
}
}