I have the following code, but it seems the Fenix 3 HR is not returning any temp data
var Info = Toybox.Sensor.getInfo();
If (Info != null && Info.temperature != null)
{
var LastTemp = Info.temperature;
}
I'm sure I'm getting something for Info, since i can use it to get the current altitude, but it seems the current temp is not being set.
I have the permission set in my manifest file:
<iq:uses-permission id="Sensor"/>
What am I missing or should I be getting the temp using another class/method?
Thanks