From 52e28b36d0451b48ada33111fd9e1046318eaf92 Mon Sep 17 00:00:00 2001 From: Noah Pendleton <2538614+noahp@users.noreply.github.com> Date: Tue, 24 Mar 2020 08:47:07 -0400 Subject: [PATCH] Reduce weather refresh to every 5 minutes Lighten load on the default OWM api key now that this clockface is released for versa. --- companion/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/companion/index.js b/companion/index.js index e340297..9d704cf 100644 --- a/companion/index.js +++ b/companion/index.js @@ -4,8 +4,8 @@ import { encode } from "cbor" import { me } from "companion" import { settingsStorage } from "settings"; -// wake every 5 minutes and refresh weather -me.wakeInterval = 5 * 60 * 1000 +// wake every 10 minutes and refresh weather +me.wakeInterval = 10 * 60 * 1000 console.log("Started companion!");