Update to memoize the sensor reading to prevent overflowing the sensor with requests

This commit is contained in:
William Moore 2022-05-26 20:24:35 -05:00
parent 25e5a63d46
commit ea87ab6478

View File

@ -35,9 +35,7 @@ const router = new Router();
router.get('/', async ctx => {
try {
const sensor = await fetch(SENSOR_URL);
const reading = await sensor.json();
ctx.body = reading;
ctx.body = `{"temperature": ${currentSensorReading}}`;
} catch (e) {
ctx.body = 'There was an error retrieving the sensor data.';
ctx.status = 500;
@ -50,10 +48,13 @@ app
app.listen(PORT);
let currentSensorReading=0.0
async function temperatoTick() {
try {
const sensor = await fetch(SENSOR_URL);
const reading = await sensor.json();
currentSensorReading = reading.temperature;
if (reading.temperature >= SET_POINT) {
const basicAuth = Buffer.from(`${USERNAME}:${PASSWORD}`).toString('base64');
await fetch(NOTIF_URL, {