TIME_INTERVAL Addition
This commit is contained in:
parent
422b6ed9bd
commit
42f3aa4426
|
@ -2,7 +2,8 @@ version: '3'
|
||||||
services:
|
services:
|
||||||
|
|
||||||
mi-scale:
|
mi-scale:
|
||||||
image: lolouk44/xiaomi-mi-scale:latest
|
build: .
|
||||||
|
#image: lolouk44/xiaomi-mi-scale:latest
|
||||||
container_name: mi-scale
|
container_name: mi-scale
|
||||||
restart: always
|
restart: always
|
||||||
|
|
||||||
|
@ -12,11 +13,12 @@ services:
|
||||||
environment:
|
environment:
|
||||||
- MISCALE_MAC=d4:00:00:00:00:00 # Mac address of your scale
|
- MISCALE_MAC=d4:00:00:00:00:00 # Mac address of your scale
|
||||||
- MQTT_HOST=127.0.0.1 # MQTT Server (defaults to 127.0.0.1)
|
- MQTT_HOST=127.0.0.1 # MQTT Server (defaults to 127.0.0.1)
|
||||||
- MQTT_PREFIX=miScale
|
- MQTT_PREFIX=miscale # MQTT Prefix, defaults to miscale
|
||||||
- MQTT_USERNAME= # Username for MQTT server (comment out if not required)
|
- MQTT_USERNAME= # Username for MQTT server (comment out if not required)
|
||||||
- MQTT_PASSWORD= # Password for MQTT (comment out if not required)
|
- MQTT_PASSWORD= # Password for MQTT (comment out if not required)
|
||||||
- MQTT_PORT=1883 # Defaults to 1883
|
- MQTT_PORT=1883 # Defaults to 1883
|
||||||
- MQTT_TIMEOUT=60 # Defaults to 60
|
- MQTT_TIMEOUT=60 # Defaults to 60
|
||||||
|
- TIME_INTERVAL=30 # Time in sec between each query to the scale, to allow other applications to use the Bluetooth module. Defaults to 30
|
||||||
|
|
||||||
# Auto-gender selection/config -- This is used to create the calculations such as BMI, Water/Bone Mass etc...
|
# Auto-gender selection/config -- This is used to create the calculations such as BMI, Water/Bone Mass etc...
|
||||||
# Up to 3 users possible as long as weights do not overlap!
|
# Up to 3 users possible as long as weights do not overlap!
|
||||||
|
|
|
@ -35,7 +35,8 @@ MQTT_PASSWORD = os.getenv('MQTT_PASSWORD', '')
|
||||||
MQTT_HOST = os.getenv('MQTT_HOST', '127.0.0.1')
|
MQTT_HOST = os.getenv('MQTT_HOST', '127.0.0.1')
|
||||||
MQTT_PORT = int(os.getenv('MQTT_PORT', 1883))
|
MQTT_PORT = int(os.getenv('MQTT_PORT', 1883))
|
||||||
MQTT_TIMEOUT = int(os.getenv('MQTT_TIMEOUT', 60))
|
MQTT_TIMEOUT = int(os.getenv('MQTT_TIMEOUT', 60))
|
||||||
MQTT_PREFIX = os.getenv('MQTT_PREFIX', '')
|
MQTT_PREFIX = os.getenv('MQTT_PREFIX', 'miscale')
|
||||||
|
TIME_INTERVAL = os.getenv('TIME_INTERVAL, '30')
|
||||||
OLD_MEASURE = ''
|
OLD_MEASURE = ''
|
||||||
|
|
||||||
# User Variables...
|
# User Variables...
|
||||||
|
@ -156,6 +157,8 @@ class ScanProcessor():
|
||||||
message += ',"Bone Mass":"' + "{:.2f}".format(lib.getBoneMass()) + '"'
|
message += ',"Bone Mass":"' + "{:.2f}".format(lib.getBoneMass()) + '"'
|
||||||
message += ',"Muscle Mass":"' + "{:.2f}".format(lib.getMuscleMass()) + '"'
|
message += ',"Muscle Mass":"' + "{:.2f}".format(lib.getMuscleMass()) + '"'
|
||||||
message += ',"Protein":"' + "{:.2f}".format(lib.getProteinPercentage()) + '"'
|
message += ',"Protein":"' + "{:.2f}".format(lib.getProteinPercentage()) + '"'
|
||||||
|
#message += ',"Body Type":"' + str(lib.getBodyTypeScale(getBodyType())) + '"'
|
||||||
|
#message += ',"Metabolic Age":"' + str(lib.getMetabolicAge()) + '"'
|
||||||
|
|
||||||
message += ',"TimeStamp":"' + mitdatetime + '"'
|
message += ',"TimeStamp":"' + mitdatetime + '"'
|
||||||
message += '}'
|
message += '}'
|
||||||
|
@ -169,12 +172,12 @@ def main():
|
||||||
sys.stdout.write('Starting Xiaomi mi Scale...\n')
|
sys.stdout.write('Starting Xiaomi mi Scale...\n')
|
||||||
scanner = btle.Scanner().withDelegate(ScanProcessor())
|
scanner = btle.Scanner().withDelegate(ScanProcessor())
|
||||||
while True:
|
while True:
|
||||||
# try:
|
try:
|
||||||
scanner.scan(5)
|
scanner.scan(5, passive=True) # Adding passive=True to try and fix issues on RPi devices
|
||||||
# except:
|
except:
|
||||||
# sys.stderr.write("Error while running the script, continuing. If you see this message too often/constantly there is probably a real issue...\n")
|
sys.stderr.write("Error while running the script, continuing. If you see this message too often/constantly there is probably a real issue...\n")
|
||||||
# pass
|
pass
|
||||||
time.sleep(1)
|
time.sleep(TIME_INTERVAL)
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
main()
|
main()
|
Loading…
Reference in a new issue