how to set best burn calories  code in watch face , some time the watch face showing different burn calories  what watch show in setting . 
did this code right ? 
Calorie = (round((#ZSC #/20))) or need to change
             
            
               
               
              1 Like 
            
            
                 
                 
              
           
          
            
            
              That is a good code for the estimate of Calories Burnt while Walking for a Good average of the Population .
((round(((#DWFHS#)/360)*1800))+(round((#ZSC#/21))))
Will give a Total which includes Resting Calories during the Course of 24 hours .
  
  
    Hi There! 
According to this discussion  I prepared my coding (calculation, transformation) of steps converting into miles, kilometres and as a special bonus into sports time. There is a plenty possibilities how to change a step counter into different another useful indicators. However, please consider that all this new generated data will be only an approximation close to an “average person” walking activity   . 
  Steps into Calories (Burned Calories)  
(round((#ZSC#/20))) 
…
   
 
  
  
    To all designers: 
most designers are using Tomaja’s formula for burned calories: 
(round(#ZSC#/20)) 
This formula is based on step count, I call it “walked calories”. 
Please use this formula, it’s much better, you can compare it to Google Fit results and you’ll see it will match + - 5%. 
Google fit has data about user (weight, age that we do not have). 
Burned calories formula: 
(round((((#DH#*60)+#DUm#)*1.23)+(#ZSC#/20))) 
It’s a combination of calories burned by living + Tomaja’s formula for…
   
 
             
            
               
               
              3 Likes