Cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Versa All stats showing as 0 clockface

Hi,

Does anyone know what the issue is that causes some clockfaces to be incompatible with the new versa firmware. I am running the latest Simulator and have developed a clock that appears fine on my Ionic and the Ionic and Versa simulators but the fitbit dev team say that all stats are 0 on the Versa. I believe them. I have seen several posts saying this is due to issues with third party clockfaces. But can someone tell us what the issues are so we can adapt the code so that it works? I am using identical code for versa & ionic.

 

Thanks

Mark

Best Answer
0 Votes
1 REPLY 1

Review team report that clock face shows stats as 0 on versa but not on Ionic. Does anyone know if this is an issue with Versa or must we use different techniques to display stats on Versa. For example this is how I display heartrate on Ionic and expect it to do the same on Versa:

(the hrLable element is defined in the SVG in index.js as a text element)

 

import { HeartRateSensor } from "heart-rate";

var hrm = new HeartRateSensor();

 

hrm.onreading = function() {
if (display.on) {
console.log("heart rate: " + hrm.heartRate);
hrLable.text = hrm.heartRate;
replaceHeartLable.text = hrm.heartRate;
}
}

Best Answer
0 Votes