forked from sodelalbert/Withings2Garmin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
measurements.py
45 lines (30 loc) · 856 Bytes
/
measurements.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# -*- coding: utf-8 -*-
# Calculate Garmin Connect physical parameters
# displayed on http://connect.garmin.com/health
#
class Measurements(object):
# M or F
gender = 'M'
def getWeight(self):
return 100
def getPercentFat(self):
return 100
# http://www.medcalc.com/tbw.html
def getPercentHydration(self):
return
def getVisceralFatMass(self):
return 100
def getBoneMass(self):
return 100
def getMuscleMass(self):
return 100
def getActiveMet(self):
return 100
def getActiveMet(self):
return 100
def getPhysiqueRating(self):
return 100
def getMetabolicAge(self):
return 100
def getVisceralFatRating(self):
return 100