I am working on a watchface with CIQ 3.2.0 and am trying to get back the current weather. When I test it in the simulator it works great however on the watchface itself it always shows 17 degrees C or 49 degrees F. I have listed my code below. Is there something else I need to do or is there something on the watch/garmin connect that needs to be done?
using Toybox.Weather;
.
.
.
var currentTempC = Weather.getCurrentConditions().temperature;
var currentTempF = ((Weather.getCurrentConditions().temperature)*(9/5))+32;
Thanks for the help...