-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupdate.js
32 lines (27 loc) · 804 Bytes
/
update.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
// run a single update of the thermostat
const config = require('./utils/loadconfig');;
const { NodeBee } = require('./ecobee');
const { Sql } = require('./sql');
// configure sql and nodeBee
const sql = new Sql(config.db);
const nodeBee = new NodeBee(config.nodeBee, sql);
// call nodeBee
const update = async (cron) => {
try {
const result = await nodeBee.getThermostatSummary();
await nodeBee.syncThermostats();
// use the results to update specific thermostats
await Promise.all(result.map(async (thermostat) => {
await nodeBee.syncRuntimeReport(thermostat.thermostat_id);
}));
if (!cron) sql.end();
console.log('Done updating!');
} catch (e) {
console.error(e);
}
};
const end = async () => {
await sql.end();
};
module.exports.update = update;
module.exports.end = end;