This commit is contained in:
lolouk44 2020-01-29 15:30:57 +00:00
commit b7eb1dc5fe
4 changed files with 82 additions and 14 deletions

View file

@ -4,7 +4,13 @@ Code to read weight measurements from [Mi Body Composition Scale](https://www.mi
![Mi Scale](Screenshots/Mi_Scale.png)
Note: Framework is present to also read from Xiaomi Scale V1, although I do not own one to test so code has not been maintained
Also works with [Mi Body Composition Scale 2](https://c.mi.com/thread-2289389-1-0.html) (Model # XMTZC05HM)
![Mi Scale_2](Screenshots/Mi_Scale_2.png)
Note: Framework is present to also read from Xiaomi Scale V1, although I do not own one to test so the code has not been maintained
## Getting the Mac Address of your Scale:
@ -23,9 +29,9 @@ C4:D3:8C:12:4C:57 MIBCS
1. Supported platforms:
1. linux/amd64
1. linux/arm64
1. linux/arm/v6
1. linux/arm/v7
1. linux/arm32v6
1. linux/arm32v7
1. linux/arm64v8
1. Open `docker-compose.yml` (see below) and edit the environment to suit your configuration...
1. Stand up the container - `docker-compose up -d`
@ -43,13 +49,13 @@ services:
privileged: true
environment:
MISCALE_MAC: 00: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_PREFIX: miScale
# 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
- MISCALE_MAC=00: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_PREFIX=miScale
- 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
# 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!
@ -72,6 +78,7 @@ services:
USER3_DOB: 1990-01-01 # DOB (in yyyy-mm-dd format)
```
### Running script directly on your host system (if your platform is not listed/supported):
1. Install python requirements (pip3 install -r requirements.txt)
@ -82,7 +89,7 @@ services:
@reboot bash /path/to/wrapper.sh
```
**NOTE**: Althought once started the script runs continuously, it may take a few seconds for the data to be retrieved, computed and sent via mqtt.
**NOTE**: Although once started the script runs continuously, it may take a few seconds for the data to be retrieved, computed and sent via mqtt.
## Home-Assistant Setup:
Under the `sensor` block, enter as many blocks as users configured in your environment variables:

BIN
Screenshots/Mi_Scale_2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 144 KiB

View file

@ -2,8 +2,8 @@ version: '3'
services:
mi-scale:
image: lolouk44/xiaomi-mi-scale:latest
container_name: mi-scale
build: .
restart: always
network_mode: host
@ -19,7 +19,7 @@ services:
- MQTT_TIMEOUT=60 # Defaults to 60
# Auto-gender selection/config -- This is used to create the calculations such as BMI, Water/Bone Mass etc...
# Multi user possible as long as weitghs do not overlap!
# Up to 3 users possible as long as weights do not overlap!
- USER1_GT=70 # If the weight is greater than this number, we'll assume that we're weighing User #1
- USER1_SEX=male

61
test_xiaomi_scale.py Normal file
View file

@ -0,0 +1,61 @@
#!/usr/bin/python3
from __future__ import print_function
import argparse
import binascii
import os
import sys
from bluepy import btle
MISCALE_MAC = 'XX:XX:XX:XX:XX:XX'
MISCALE_MAC = 'd4:ab:c8:b9:49:40'
if os.getenv('C', '1') == '0':
ANSI_RED = ''
ANSI_GREEN = ''
ANSI_YELLOW = ''
ANSI_CYAN = ''
ANSI_WHITE = ''
ANSI_OFF = ''
else:
ANSI_CSI = "\033["
ANSI_RED = ANSI_CSI + '31m'
ANSI_GREEN = ANSI_CSI + '32m'
ANSI_YELLOW = ANSI_CSI + '33m'
ANSI_CYAN = ANSI_CSI + '36m'
ANSI_WHITE = ANSI_CSI + '37m'
ANSI_OFF = ANSI_CSI + '0m'
class ScanProcessor():
def handleDiscovery(self, dev, isNewDev, isNewData):
if dev.addr == MISCALE_MAC.lower() and isNewDev:
print (' Device: %s (%s), %d dBm %s. ' %
(
ANSI_WHITE + dev.addr + ANSI_OFF,
dev.addrType,
dev.rssi,
('' if dev.connectable else '(not connectable)'))
, end='')
for (sdid, desc, data) in dev.getScanData():
if sdid == 22:
print('')
print ('data:')
print (data)
if not dev.scanData:
print ('\t(no data)')
print
def main():
scanner = btle.Scanner().withDelegate(ScanProcessor())
print (ANSI_RED + "Scanning for devices..." + ANSI_OFF)
devices = scanner.scan(5)
if __name__ == "__main__":
main()