Skip to content

Commit 057fb7d

Browse files
committed
Light entity fix, @current_mode.setting addition in pyliebherr
1 parent 1408975 commit 057fb7d

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

custom_components/liebherr/light.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def __init__(
3737
super().__init__(coordinator, device, control)
3838
self._attr_icon = "mdi:lightbulb"
3939
self._attr_supported_color_modes = {ColorMode.BRIGHTNESS}
40-
self.brightness_scale: tuple[int, int] = (0, control.max if control.max else 4)
40+
self.brightness_scale: tuple[int, int] = (1, control.max if control.max else 4)
4141
self._set_brightness()
4242

4343
def _set_brightness(self) -> None:

custom_components/liebherr/manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
"pyliebherr"
1818
],
1919
"requirements": [
20-
"pyliebherr==2026.2.1",
20+
"pyliebherr==2026.2.2",
2121
"Pillow>=11.0.0"
2222
],
2323
"single_config_entry": true,
24-
"version": "2026.2.6-beta"
24+
"version": "2026.2.6-beta.1"
2525
}

0 commit comments

Comments
 (0)