Logo is now the first info entry.

pull/1685/head
David Peer 2022-04-17 09:45:01 +02:00
parent 1f445f69df
commit 177656f1fe
1 changed files with 1 additions and 1 deletions

View File

@ -111,12 +111,12 @@ var imgWatch = {
*/
var infoArray = [
function(){ return [ null, null, "left" ] },
function(){ return [ "Bangle", imgWatch, "right" ] },
function(){ return [ E.getBattery() + "%", imgBattery, "left" ] },
function(){ return [ getSteps(), imgSteps, "left" ] },
function(){ return [ Math.round(Bangle.getHealthStatus("last").bpm) + " bpm", imgBpm, "left"] },
function(){ return [ getWeather().temp, imgTemperature, "left" ] },
function(){ return [ getWeather().wind, imgWind, "left" ] },
function(){ return [ "Bangle", imgWatch, "right" ] }
];
const NUM_INFO=infoArray.length;