Compare commits

..

No commits in common. "master" and "0.1.113c" have entirely different histories.

4 changed files with 2 additions and 20 deletions

View file

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

View file

@ -1,11 +1,3 @@
## [0.1.14] - 2020-11-26
### Changed
- Reduced docker image size
## [0.1.13] - 2020-11-26
### Changed
- Fixed MQTT Discovery Message
## [0.1.12] - 2020-11-23 ## [0.1.12] - 2020-11-23
### Changed ### Changed
- Updated workflow to automatically build docker images on new releases with version and latest tags - Updated workflow to automatically build docker images on new releases with version and latest tags

View file

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

View file

@ -2,15 +2,7 @@
sleep 60 # Give the system time after a reboot to connect to WiFi before continuing 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 MISCALE_MAC=00:00:00:00:00:00 # Mac address of your scale
export HCI_DEV=hci0 # Bluetooth hci device to use export MQTT_PREFIX=miScale
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_GT=70 # If the weight is greater than this number, we'll assume that we're weighing User #1
export USER1_SEX=male export USER1_SEX=male