no need for timeout now

This commit is contained in:
bpaulin 2020-06-01 15:58:09 +02:00
parent d3ec4ebaec
commit c3d8976cdc
3 changed files with 3 additions and 6 deletions

View file

@ -55,7 +55,6 @@ services:
- MQTT_USERNAME= # Username for MQTT server (comment out if not required)
- MQTT_PASSWORD= # Password for MQTT (comment out if not required)
- MQTT_PORT= # Defaults to 1883
- MQTT_TIMEOUT=30 # 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...

View file

@ -17,7 +17,6 @@ services:
- MQTT_USERNAME= # Username for MQTT server (comment out if not required)
- MQTT_PASSWORD= # Password for MQTT (comment out if not required)
- MQTT_PORT=1883 # Defaults to 1883
- 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...

View file

@ -36,7 +36,6 @@ MQTT_USERNAME = os.getenv('MQTT_USERNAME', 'username')
MQTT_PASSWORD = os.getenv('MQTT_PASSWORD', None)
MQTT_HOST = os.getenv('MQTT_HOST', '127.0.0.1')
MQTT_PORT = int(os.getenv('MQTT_PORT', 1883))
MQTT_TIMEOUT = int(os.getenv('MQTT_TIMEOUT', 60))
MQTT_PREFIX = os.getenv('MQTT_PREFIX', 'miscale')
TIME_INTERVAL = int(os.getenv('TIME_INTERVAL', 30))
OLD_MEASURE = ''