mirror of
https://github.com/home-assistant/core.git
synced 2025-07-21 12:17:07 +00:00
Bump HAP-python to 4.2.1 (#55804)
This commit is contained in:
parent
73260c5b88
commit
459bc55e32
@ -3,7 +3,7 @@
|
||||
"name": "HomeKit",
|
||||
"documentation": "https://www.home-assistant.io/integrations/homekit",
|
||||
"requirements": [
|
||||
"HAP-python==4.1.0",
|
||||
"HAP-python==4.2.1",
|
||||
"fnvhash==0.1.0",
|
||||
"PyQRCode==1.2.1",
|
||||
"base36==0.1.1"
|
||||
|
@ -219,7 +219,7 @@ class Fan(HomeAccessory):
|
||||
# the rotation speed is mapped to 1 otherwise the update is ignored
|
||||
# in order to avoid this incorrect behavior.
|
||||
if percentage == 0 and state == STATE_ON:
|
||||
percentage = 1
|
||||
percentage = max(1, self.char_speed.properties[PROP_MIN_STEP])
|
||||
if percentage is not None:
|
||||
self.char_speed.set_value(percentage)
|
||||
|
||||
|
@ -14,7 +14,7 @@ Adafruit-SHT31==1.0.2
|
||||
# Adafruit_BBIO==1.1.1
|
||||
|
||||
# homeassistant.components.homekit
|
||||
HAP-python==4.1.0
|
||||
HAP-python==4.2.1
|
||||
|
||||
# homeassistant.components.mastodon
|
||||
Mastodon.py==1.5.1
|
||||
|
@ -7,7 +7,7 @@
|
||||
AEMET-OpenData==0.2.1
|
||||
|
||||
# homeassistant.components.homekit
|
||||
HAP-python==4.1.0
|
||||
HAP-python==4.2.1
|
||||
|
||||
# homeassistant.components.flick_electric
|
||||
PyFlick==0.0.2
|
||||
|
Loading…
x
Reference in New Issue
Block a user