Compare commits

...

7 commits

Author SHA1 Message Date
lolouk44 a5ddd5d334 Update wrapper.sh 2020-12-10 11:36:55 +00:00
lolouk44 6542a02525 0.1.14 2020-11-26 16:11:46 +00:00
lolouk44 dcaedf1cfd 0.1.14b 2020-11-26 15:54:57 +00:00
lolouk44 441084f574 0.1.14a 2020-11-26 15:43:01 +00:00
lolouk44 589d4ceafc 0.1.113 2020-11-26 12:28:34 +00:00
lolouk44 c386f97371 0.1.114c 2020-11-26 11:42:31 +00:00
lolouk44 f303708992 0.1.13b 2020-11-26 09:53:54 +00:00
5 changed files with 17 additions and 3 deletions

View file

@ -28,6 +28,7 @@ jobs:
run: |
docker buildx build --no-cache --push \
--tag lolouk44/xiaomi-mi-scale:${{ github.event.release.tag_name }} \
--tag lolouk44/xiaomi-mi-scale:latest \
--platform linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64/v8 .
- name: Image digest

View file

@ -1,3 +1,7 @@
## [0.1.14] - 2020-11-26
### Changed
- Reduced docker image size
## [0.1.13] - 2020-11-26
### Changed
- Fixed MQTT Discovery Message

View file

@ -3,7 +3,8 @@ FROM python:3.8-slim
WORKDIR /opt/miscale
COPY src /opt/miscale
RUN apt-get update && apt-get install no-install-recommends -y \
RUN apt-get update && apt-get install --no-install-recommends -y \
build-essential \
bluez \
python-pip \
libglib2.0-dev && \

View file

@ -193,7 +193,7 @@ OLD_MEASURE = ''
def discovery():
for MQTTUser in (USER1_NAME,USER2_NAME,USER3_NAME):
message = '{"name": "' + MQTTUser + ' Weight",'
message+= '"state_topic": "' + MQTT_PREFIX + '/' + MQTTUser + '/weight","value_template": "{{ value_json['weight'] }}",'
message+= '"state_topic": "' + MQTT_PREFIX + '/' + MQTTUser + '/weight","value_template": "{{ value_json.weight }}",'
message+= '"json_attributes_topic": "' + MQTT_PREFIX + '/' + MQTTUser + '/weight","icon": "mdi:scale-bathroom"}'
publish.single(
MQTT_DISCOVERY_PREFIX + '/sensor/' + MQTT_PREFIX + '/' + MQTTUser + '/config',

View file

@ -2,7 +2,15 @@
sleep 60 # Give the system time after a reboot to connect to WiFi before continuing
export MISCALE_MAC=00:00:00:00:00:00 # Mac address of your scale
export MQTT_PREFIX=miScale
export HCI_DEV=hci0 # Bluetooth hci device to use
export MQTT_HOST=127.0.0.1 # MQTT Server (defaults to 127.0.0.1)
export MQTT_PREFIX=miscale # MQTT Topic Prefix. Defaults to miscale
export MQTT_USERNAME= # Username for MQTT server (comment out if not required)
export MQTT_PASSWORD= # Password for MQTT (comment out if not required)
export MQTT_PORT=1883 # Defaults to 1883
export TIME_INTERVAL=30 # Time in sec between each query to the scale, to allow other applications to use the Bluetooth module. Defaults to 30
export MQTT_DISCOVERY=true # Home Assistant Discovery (true/false), defaults to true
export MQTT_DISCOVERY_PREFIX= # Home Assistant Discovery Prefix, defaults to homeassistant
export USER1_GT=70 # If the weight is greater than this number, we'll assume that we're weighing User #1
export USER1_SEX=male