mirror of
https://github.com/home-assistant/core.git
synced 2025-07-12 07:47:08 +00:00
Bump xiaomi-ble to 0.19.1 (#96967)
* Bump xiaomi-ble to 0.19.0 * Bump xiaomi-ble to 0.19.1 --------- Co-authored-by: J. Nick Koston <nick@koston.org>
This commit is contained in:
parent
28ff173f16
commit
4e964c3819
@ -123,7 +123,7 @@ class XiaomiConfigFlow(ConfigFlow, domain=DOMAIN):
|
|||||||
if len(bindkey) != 24:
|
if len(bindkey) != 24:
|
||||||
errors["bindkey"] = "expected_24_characters"
|
errors["bindkey"] = "expected_24_characters"
|
||||||
else:
|
else:
|
||||||
self._discovered_device.bindkey = bytes.fromhex(bindkey)
|
self._discovered_device.set_bindkey(bytes.fromhex(bindkey))
|
||||||
|
|
||||||
# If we got this far we already know supported will
|
# If we got this far we already know supported will
|
||||||
# return true so we don't bother checking that again
|
# return true so we don't bother checking that again
|
||||||
@ -157,7 +157,7 @@ class XiaomiConfigFlow(ConfigFlow, domain=DOMAIN):
|
|||||||
if len(bindkey) != 32:
|
if len(bindkey) != 32:
|
||||||
errors["bindkey"] = "expected_32_characters"
|
errors["bindkey"] = "expected_32_characters"
|
||||||
else:
|
else:
|
||||||
self._discovered_device.bindkey = bytes.fromhex(bindkey)
|
self._discovered_device.set_bindkey(bytes.fromhex(bindkey))
|
||||||
|
|
||||||
# If we got this far we already know supported will
|
# If we got this far we already know supported will
|
||||||
# return true so we don't bother checking that again
|
# return true so we don't bother checking that again
|
||||||
|
@ -20,5 +20,5 @@
|
|||||||
"dependencies": ["bluetooth_adapters"],
|
"dependencies": ["bluetooth_adapters"],
|
||||||
"documentation": "https://www.home-assistant.io/integrations/xiaomi_ble",
|
"documentation": "https://www.home-assistant.io/integrations/xiaomi_ble",
|
||||||
"iot_class": "local_push",
|
"iot_class": "local_push",
|
||||||
"requirements": ["xiaomi-ble==0.18.2"]
|
"requirements": ["xiaomi-ble==0.19.1"]
|
||||||
}
|
}
|
||||||
|
@ -2684,7 +2684,7 @@ wyoming==1.1.0
|
|||||||
xbox-webapi==2.0.11
|
xbox-webapi==2.0.11
|
||||||
|
|
||||||
# homeassistant.components.xiaomi_ble
|
# homeassistant.components.xiaomi_ble
|
||||||
xiaomi-ble==0.18.2
|
xiaomi-ble==0.19.1
|
||||||
|
|
||||||
# homeassistant.components.knx
|
# homeassistant.components.knx
|
||||||
xknx==2.11.1
|
xknx==2.11.1
|
||||||
|
@ -1966,7 +1966,7 @@ wyoming==1.1.0
|
|||||||
xbox-webapi==2.0.11
|
xbox-webapi==2.0.11
|
||||||
|
|
||||||
# homeassistant.components.xiaomi_ble
|
# homeassistant.components.xiaomi_ble
|
||||||
xiaomi-ble==0.18.2
|
xiaomi-ble==0.19.1
|
||||||
|
|
||||||
# homeassistant.components.knx
|
# homeassistant.components.knx
|
||||||
xknx==2.11.1
|
xknx==2.11.1
|
||||||
|
Loading…
x
Reference in New Issue
Block a user