We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1408975 commit 057fb7dCopy full SHA for 057fb7d
2 files changed
custom_components/liebherr/light.py
@@ -37,7 +37,7 @@ def __init__(
37
super().__init__(coordinator, device, control)
38
self._attr_icon = "mdi:lightbulb"
39
self._attr_supported_color_modes = {ColorMode.BRIGHTNESS}
40
- self.brightness_scale: tuple[int, int] = (0, control.max if control.max else 4)
+ self.brightness_scale: tuple[int, int] = (1, control.max if control.max else 4)
41
self._set_brightness()
42
43
def _set_brightness(self) -> None:
custom_components/liebherr/manifest.json
@@ -17,9 +17,9 @@
17
"pyliebherr"
18
],
19
"requirements": [
20
- "pyliebherr==2026.2.1",
+ "pyliebherr==2026.2.2",
21
"Pillow>=11.0.0"
22
23
"single_config_entry": true,
24
- "version": "2026.2.6-beta"
+ "version": "2026.2.6-beta.1"
25
}
0 commit comments