22 lines
688 B
JavaScript
Raw Normal View History

2020-05-07 22:05:20 +01:00
const post = require('../lib/post')
2020-05-07 22:12:45 +01:00
module.exports = function (app) {
2020-05-07 22:05:20 +01:00
app.get("/heating", async function (req, res, next) {
const response = await post.postRequest()
const heating = response.updateData.zones[0]
res.json(heating)
});
2020-05-07 22:12:45 +01:00
app.get("/heating/status", async function (req, res, next) {
const response = await post.postRequest()
const heating = response.updateData.zones[0].status
res.json(heating)
});
app.get("/heating/config", async function (req, res, next) {
const response = await post.postRequest()
const heating = response.updateData.zones[0].config
res.json(heating)
});
2020-05-07 22:05:20 +01:00
}