From 19dc8fdcac8defb57af3317b9a28e3d44d360692 Mon Sep 17 00:00:00 2001 From: olivierbarriere Date: Mon, 15 Apr 2024 23:54:50 -0400 Subject: [PATCH] Get daily steps --- apps/hassio/hassio.boot.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/hassio/hassio.boot.js b/apps/hassio/hassio.boot.js index 14aa34f6a..de8a87141 100644 --- a/apps/hassio/hassio.boot.js +++ b/apps/hassio/hassio.boot.js @@ -91,7 +91,7 @@ const runHassio = () => { }); const updateSensor = () => { - hassioAttributes.health = Bangle.getHealthStatus(); + hassioAttributes.health = Bangle.getHealthStatus("day"); hassioAttributes.accel = Bangle.getAccel(); hassioAttributes.battery = getBattery(); hassioAttributes.compass = Bangle.getCompass(); @@ -125,4 +125,4 @@ const runHassio = () => { setInterval(runHassio, HASSIO.interval); }, 5000); } -})(); \ No newline at end of file +})();