Acknowledged

Epix2 doesn't seem to have certain system data

any knowledge if the Epix2 watches support getting battery level and temperature?  got a user (probably one of the few i have with this new watch) reporting that both battery and temperature are showing as my default values in the app.  ie, they aren't getting returned by the sdk

code is pretty simple but included below

        battLevel = System.getSystemStats().battery;
and
        var sensorInfo = Sensor.getInfo();

        if (sensorInfo.temperature != null) {
            return sensorInfo.temperature;
        }

        return -99;   //  this is what my user is getting instead of a valid temp.  
note that both of these are working fine in the simulator for epix2
Parents
  • ah.  embarrassed to say i've never realized it didn't work on any watch.  although most of my customers are on edge devices.  guess i'll have to put out an update Slight smile

    thanks jim!

    hopefully somebody can chime in with more details on the battery data

Comment
  • ah.  embarrassed to say i've never realized it didn't work on any watch.  although most of my customers are on edge devices.  guess i'll have to put out an update Slight smile

    thanks jim!

    hopefully somebody can chime in with more details on the battery data

Children