Skip to content

Commit 137944e

Browse files
committed
Add display light control option for Daikin and Gree climate platforms
- Introduced an optional `display` parameter to control the indoor unit display light, defaulting to `true`. - Added a tip about the Gree climate platform's custom preset `Light off` for automations. - Included example configurations for toggling the display light at runtime. This enhances user control over the display settings for better customization.
1 parent 7500f03 commit 137944e

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

content/components/climate/climate_ir.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,10 @@ The Daikin ARC remotes (`daikin_arc` climate, `daikin_arc417`, `daikin_arc480` p
138138
- `yac1fb9`
139139
- `yx1ff`
140140
- `yag`
141+
- **display** (*Optional*, boolean): Controls whether the indoor unit display light remains on. Defaults to `true`. Set this to `false` if you prefer the panel light to stay off when ESPHome sends commands. This preference is preserved when switching between the standard presets (for example, `sleep`) that the integration exposes for compatible models.
142+
143+
> [!TIP]
144+
> The Gree climate platform also exposes a custom preset named `Light off`, which can be used in automations to temporarily disable the display light without changing other preset options. While this preset is active it overrides the `display` setting; once cleared, the display light automatically returns to the configured `display` value.
141145

142146
```yaml
143147
# Example configuration entry
@@ -146,6 +150,33 @@ climate:
146150
name: "AC"
147151
sensor: room_temperature
148152
model: yan
153+
display: false
154+
```
155+
156+
```yaml
157+
# Example: switch to toggle the display light at runtime
158+
switch:
159+
- platform: template
160+
name: Office Air Conditioner - Display Light
161+
optimistic: true
162+
turn_on_action:
163+
- lambda: |-
164+
id(office_air_conditioner).set_display_light(true);
165+
- climate.control:
166+
id: office_air_conditioner
167+
turn_off_action:
168+
- lambda: |-
169+
id(office_air_conditioner).set_display_light(false);
170+
- climate.control:
171+
id: office_air_conditioner
172+
173+
climate:
174+
- platform: gree
175+
id: office_air_conditioner
176+
name: Office Air Conditioner
177+
transmitter_id: ir_tx
178+
model: yan
179+
supports_heat: false
149180
```
150181

151182
{{< anchor "midea_ir" >}}

0 commit comments

Comments
 (0)