0.1.6
This commit is contained in:
parent
c5b64862b7
commit
6a7225f32d
@ -1,3 +1,9 @@
|
|||||||
|
## [0.1.6] - 2020-07-01
|
||||||
|
### Added
|
||||||
|
- Docker Image so install is quicker (no local build required).
|
||||||
|
## [0.1.5] - 2020-07-01
|
||||||
|
### Added
|
||||||
|
- MQTT Discovery Support.
|
||||||
## [0.1.4] - 2020-06-29
|
## [0.1.4] - 2020-06-29
|
||||||
### Added
|
### Added
|
||||||
- First release (version in line with non Add-On script for ease of maintenance).
|
- First release (version in line with non Add-On script for ease of maintenance).
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
FROM python:3.8-slim
|
FROM python:3.8-slim
|
||||||
|
LABEL io.hass.version="0.1.6" io.hass.type="addon" io.hass.arch="armhf|aarch64|i386|amd64"
|
||||||
WORKDIR /opt/miscale
|
WORKDIR /opt/miscale
|
||||||
COPY src /opt/miscale
|
COPY src /opt/miscale
|
||||||
|
|
||||||
|
@ -4,6 +4,7 @@
|
|||||||
"slug": "xiaomi_mi_scale",
|
"slug": "xiaomi_mi_scale",
|
||||||
"description": "Read weight measurements from Xiamomi scale via BLE",
|
"description": "Read weight measurements from Xiamomi scale via BLE",
|
||||||
"url": "https://github.com/lolouk44/xiaomi_mi_scale_ha_add_on",
|
"url": "https://github.com/lolouk44/xiaomi_mi_scale_ha_add_on",
|
||||||
|
"image": "lolouk44/xiaomi-mi-scale",
|
||||||
"arch": ["armhf", "armv7", "aarch64", "amd64", "i386"],
|
"arch": ["armhf", "armv7", "aarch64", "amd64", "i386"],
|
||||||
"startup": "before",
|
"startup": "before",
|
||||||
"boot": "auto",
|
"boot": "auto",
|
||||||
|
@ -107,6 +107,7 @@ def discovery():
|
|||||||
port=MQTT_PORT,
|
port=MQTT_PORT,
|
||||||
auth={'username':MQTT_USERNAME, 'password':MQTT_PASSWORD}
|
auth={'username':MQTT_USERNAME, 'password':MQTT_PASSWORD}
|
||||||
)
|
)
|
||||||
|
sys.stdout.write(f"{datetime.now().strftime('%Y-%m-%d %H:%M:%S')} - Discovery Completed...\n")
|
||||||
|
|
||||||
|
|
||||||
class ScanProcessor():
|
class ScanProcessor():
|
||||||
|
Loading…
Reference in New Issue
Block a user